我已经创建了一个 mySwitchCollection,我需要从中检索 boolForKey 值以打开或关闭我的视图上的开关。这是代码,但我有问题 [defs boolForKey:arrayCostanti[i]];
arrayCostanti 是一个静态的 NSString *arrayCostanti[] = {k3D,kAnimazione};
如何将我的 arrayCostanti[i] 值推送到 boolForKey?
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
//Leggo dal defs gli stati di ogni switch e gli setto lo stato
//NSUserDefaults
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
//mySwitch1.on = [defs boolForKey: k3D];
//ciclo for per settare tutti gli stati degli switch che ho raccolto nel mySwitchCollection
for (int i = 0; i <= 45; i++){
mySwitchCollection[i].on = [defs boolForKey:arrayCostanti[i]];
}
}