equal
deleted
inserted
replaced
285 |
285 |
286 checkValueString(detailLabel.text,cellLabel.text,theSlider); |
286 checkValueString(detailLabel.text,cellLabel.text,theSlider); |
287 |
287 |
288 // save changes in the main array |
288 // save changes in the main array |
289 NSMutableArray *array = [self.schemeDictionary objectForKey:@"basic"]; |
289 NSMutableArray *array = [self.schemeDictionary objectForKey:@"basic"]; |
290 [array replaceObjectAtIndex:theSlider.tag-SLIDER_TAG withObject:[NSNumber numberWithInt:(NSInteger) theSlider.value]]; |
290 [array replaceObjectAtIndex:theSlider.tag-SLIDER_TAG withObject:[NSNumber numberWithInteger:theSlider.value]]; |
291 } |
291 } |
292 |
292 |
293 #pragma mark - |
293 #pragma mark - |
294 #pragma mark Table view delegate |
294 #pragma mark Table view delegate |
295 -(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
295 -(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |