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.
用户看到一个图像,它应该根据 if 语句(真或假)更改为另一个 - 不知道如何在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
请让我知道这对你有没有用。