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.
ユーザーには 1 つの画像が表示され、if ステートメント (true または false) に従って別の画像に変更する必要があります。objective-c でそれを行う方法がわからない
このコードを使用します:
imageView.image = (your true-or-false expression) ? [UIImage imageNamed:@"foo.png"] : [UIImage imageNamed:@"bar.png"];
の場合は画像trueを取得foo.pngし、そうでない場合はbar.png。
true
foo.png
bar.png
それがあなたのために働くかどうか私に知らせてください。