Lines Matching refs:cell
43 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
44 if (cell == nil) {
45 …cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIde…
48 cell.textLabel.text = [fOptions objectAtIndex:indexPath.row];
50 cell.accessoryType = UITableViewCellAccessoryCheckmark;
51 self.fSelectedCell = cell;
54 cell.accessoryType = UITableViewCellAccessoryNone;
56 return cell;
63 UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
65 self.fSelectedCell = cell;
66 cell.accessoryType = UITableViewCellAccessoryCheckmark;
67 self.fParentCell.detailTextLabel.text = cell.textLabel.text;;