我有一个有四行的表,每行都有一个标题和开关作为附件。我希望在点击相应的开关时更新 plist 布尔值。
列表:
<array>
<dict>
<key>Bools</key>
<array>
<false/>
<false/>
<false/>
<false/>
</array>
<key>Strings</key>
<array>
<string>String0</string>
<string>String1</string>
<string>String2</string>
<string>String3</string>
</array>
</dict>
</array>
以下是数据源方法:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; {
return [allergens count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; {
return [[[allergens objectAtIndex: section] objectForKey: @"Strings"] count];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; {
return @"Header";
}
这是我的开关,带有选择器:switchToggled
UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectZero];
cell.accessoryView = switchView;
[switchView addTarget:self action:@selector(switchToggled:) forControlEvents: UIControlEventTouchUpInside];
下面是 IBAction 方法。我可以成功地让switch tapped
出现在日志中,所以我知道一切正常。我只是不确定如何更新正确的布尔值。
- (IBAction)switchToggled:(id)sender {
NSLog(@"switch tapped");
}
任何帮助表示赞赏!谢谢。