How to delete UIImage from UIImageView?
How to delete UIImage from UI开发者_运维问答ImageView ?
just set view's image property to nil:
yourImageView.image = nil;
Setting the image property to nil should achieve this, I'd have thought.
See the full image property method signature within the UIImageView class reference docs.
精彩评论