0

我有 UIImageView 在 View 中具有背景图像的作用。我想在此 UIImageView 中加载两个不同的图像,具体取决于在 Settings Bundle 中的切换开关中选择的状态。

最好的方法是什么?

4

1 回答 1

1

尝试这样的事情:

NSUserDefaults* settings = [NSUserDefaults standardUserDefaults];
NSString* imgName = [settings boolForKey:@"toggle_switch"] ? @"switch_on.png" : @"switch_off.png";
UIImage* img = [UIImage imageNamed:imgName];
[imageView setImage:img];
于 2012-12-29T11:44:33.390 回答