project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m
changeset 5700 f0960a88ab0e
parent 5664 dfc574d7f49e
child 6000 dbcebcd3d79f
equal deleted inserted replaced
5699:1a9a6a7662aa 5700:f0960a88ab0e
   259 }
   259 }
   260 
   260 
   261 #pragma mark -
   261 #pragma mark -
   262 #pragma mark Table view delegate
   262 #pragma mark Table view delegate
   263 -(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
   263 -(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
       
   264     [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
   264     if (0 == [indexPath section]) {
   265     if (0 == [indexPath section]) {
   265         EditableCellView *cell = (EditableCellView *)[aTableView cellForRowAtIndexPath:indexPath];
   266         EditableCellView *cell = (EditableCellView *)[aTableView cellForRowAtIndexPath:indexPath];
   266         [cell replyKeyboard];
   267         [cell replyKeyboard];
   267     }
   268     }
   268 }
   269 }