NIB . viewDidLoad Nib :
#define kMyCellIdentifier @"kMyCellIdentifier"
....
- (void)viewDidLoad
{
UINib *tableCellNib = [UINib nibWithNibName:@"MyCell" bundle:nil];
[self.tableView tableCellNib forCellReuseIdentifier:kMyCellIdentifier];
}
, . Nib, iOS , :
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kMyCellIdentifier];
return cell;
}
Storyboards IB, , , iPad, iPhone .