我是iPhone开发的新手。我想检查图像是否存在于图像视图中的条件?我创建了一个图像视图,如
UIImageView *subview = [[UIImageView alloc] initWithFrame:CGRectMake(10.0f, 6.0f,50.0f, 50.0f)];
如何检查图像视图中是否存在图像?
答案 0 :(得分:2)
if (subView.image != nil)
// image is present
else
// image missing