Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビューで背景画像の役割を持つUIImageViewがあります。設定バンドルのトグルスイッチで選択されている状態に応じて、このUIImageViewに2つの異なる画像をロードしたいと思います。
それを行うための最良の方法は何ですか?
次のようなものを試してください。
NSUserDefaults* settings = [NSUserDefaults standardUserDefaults]; NSString* imgName = [settings boolForKey:@"toggle_switch"] ? @"switch_on.png" : @"switch_off.png"; UIImage* img = [UIImage imageNamed:imgName]; [imageView setImage:img];