Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 363 Bytes

Set-static-UITableViewCell-delegate.md

File metadata and controls

12 lines (10 loc) · 363 Bytes

Set static UITableViewCell delegate

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
    if (indexPath.row == 0) {
        ((MyTableViewViewCell *)cell).delegate = self;
    }
    return cell;
}