選中了tableview的cell的某一行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
如果你是自定義的話就用下面這種
MyCustomCell *cell = (MyCustomCell *)[tableView cellForRowAtIndexPath:indexPath];