Возможно, это может помочь другим, я решил это с ...
- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomCell *cell = [tv dequeueReusableCellWithIdentifier:@"Cell"];
...
// Get the size of UILabel firstName.
CGSize size = [[cell.firstName text] sizeWithFont:[cell.firstName font]];
// Draw UILabel lastName next to UILabel firstName.
// UILabel firstName was initialized in CustomCell.m in -(void)layoutSubviews.
cell.lastName.frame = CGRectMake(size.width + 50, 23, 40, 15);
// Make lastName green, oh yeah!
cell.lastName.textColor = [UIColor colorWithRed:0 green:0.6 blue:0 alpha:1];
}