author | antonc27 <antonc27@mail.ru> |
Tue, 03 Nov 2015 21:43:05 +0100 | |
branch | ios-revival |
changeset 11286 | c0d6f6ffa798 |
parent 11279 | 9e0fe32aff59 |
child 11287 | 9c021eadd374 |
--- a/project_files/HedgewarsMobile/Classes/SingleSchemeViewController.m Tue Nov 03 04:49:50 2015 +0100 +++ b/project_files/HedgewarsMobile/Classes/SingleSchemeViewController.m Tue Nov 03 21:43:05 2015 +0100 @@ -280,10 +280,10 @@ UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; // grab the associated labels UILabel *detailLabel = (UILabel *)cell.detailTextLabel; - UILabel *cellLabel = (UILabel *)[cell.contentView viewWithTag:LABEL_TAG]; // modify it - checkValueString(detailLabel.text,cellLabel.text,theSlider); + NSString *basicSettingTitleKey = [[self.basicSettingList objectAtIndex:[indexPath row]] objectForKey:@"title"]; + checkValueString(detailLabel.text,basicSettingTitleKey,theSlider); // save changes in the main array NSMutableArray *array = [self.schemeDictionary objectForKey:@"basic"];