如何将一个 UIImageView 的图像设置为另一个 UIImageview 的图像

How to set the image of one UIImageView to the image of Another UIImageview

有没有一种非常简单的方法可以做到这一点。这行不通,我知道,但我希望有一些类似的东西:

_wantedCharacter.image = [UIImage _character0.image];

有什么建议吗?我只是真的不想通过并输入图像的实际名称,因为我必须做很多。谢谢

假设 _wantedCharacter_character0 的类型是 UIImageView,

_wantedCharacter.image = _character0.image;

由于您已经加载了图像并将其添加到您的一个 UIImageView 实例中,因此没有必要再次将其加载到另一个 UIImage 中。所以,简单地做:

_wantedCharacter.image = _character0.image;