如何在objective-c中使UIImage为NULL
Posted
技术标签:
【中文标题】如何在objective-c中使UIImage为NULL【英文标题】:how to make UIImage as NULL in objective-c 【发布时间】:2017-09-27 06:11:10 【问题描述】:我用过代码:UIImage *selectedImage;
那么,
for (int j = 1 ; j <=b ; j++)
id subView = [self.view viewWithTag:j];
if ([subView isKindOfClass:[UIImageView class]])
((UIImageView *)subView).image = selectedImage;
那么如何将 UIImage 设为 null 值。
【问题讨论】:
您想将其从视图中删除还是只想设置空白图像? 代码怎么做 不清楚你想要什么?你想让哪个图像为NULL?选定的图像? uiimage 名称为 selectedimage ((UIImageView *)subView).image = [UIImage imageNamed:@""];这将设置一个空图像。 【参考方案1】:而不是将UIImage
NULL 设置为空图像
[UIImage imageNamed:@""]
【讨论】:
【参考方案2】:如果您只想将图像设置为 null,只需:
yourImage = nil;
如果我误解了这个问题或者我错了,请随时告诉我。 :)
【讨论】:
以上是关于如何在objective-c中使UIImage为NULL的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Objective-C 的 UITableView 中使 UITableViewRowAction 完全透明
如何在objective-c中使对象在整个应用程序中保持活动状态