Guest User

Untitled

a guest
Jul 12th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2. {  
  3.     [self.tableView cellForRowAtIndexPath:indexPath].textLabel.font = [UIFont fontWithName:@"Arial-MT" size:18];
  4. }
  5.  
  6. - (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
  7. {
  8.    
  9.     UITableViewCell *cellForRowToBeSelected = [tableView cellForRowAtIndexPath:indexPath];
  10.        
  11.     if (cellForRowToBeSelected.selected)
  12.     {
  13.         [self.tableView cellForRowAtIndexPath:indexPath].textLabel.font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
  14.     }
  15.    
  16.     return indexPath;
  17. }
Add Comment
Please, Sign In to add comment