如何在iphone中检查imageview nil

时间:2011-05-18 06:27:09

标签: iphone uiimageview uiimage

喜   我有一个UIImageView(reimg1),第一次加载时我不应该有任何图像所以我会将图像设为零。

if (reimg1.image == nil) {
   NSLog(@">>>>>>>> image view is empty");
} else {

}

4 个答案:

答案 0 :(得分:0)

检查图像为空时是否(图像== nil)或设置一些默认图像

答案 1 :(得分:0)

如果你想第一次将图像设置为nil,那么设置像这样的属性

[self.reimg1 setImage:Nil];  

如果你要检查它是否含有数据

if(reimg1==nil)  
{  
..  
}  

或转换 NSdata 并检查其值

答案 2 :(得分:0)

请参阅UIImage.image

答案 3 :(得分:0)

检查imageView是否为空。

if ([imageView isEqual:nil]) {

    //if the image view is empty do the following
    NSLog(@"imageView:%@ is empty", imageView);


}else{

    //If the image view is not empty do the following
    NSLog(@"imageView:%@ is not empty", imageView);

    //For example, in viewDidLoad, you could set UIImageView as nil
    [imageView setImage:nil];

}