I need to check if a file loaded into an UIImage
object file is equal to another image and execute some actions if so. Unfortunately, it's not working.
emptyImage = UIImage(named: imageName)
if(image1.image != emptyImage) {
// do something
} else {
// do something
}
The above code always enters the if
branch.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…