Advertisement
Guest User

Untitled

a guest
May 5th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. CustomTableViewCell *cell = (CustomJobsTableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
  2.  
  3. if(indexPath.row == 0){
  4. cell.yourLabelName.text = @"One"
  5. }
  6. if(indexPath.row == 1){
  7. cell.yourLabelName.text = @"Two"
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement