How to know if an Image View already has an image?

Asked

Viewed 212 times

3

How to know if an Image View already has an image ?

1 answer

4

UIImage *imagem = [[UIImage alloc] init];

if (imagem.image != nil)
   // imagem existe
else
   // imagem não existe

Browser other questions tagged

You are not signed in. Login or sign up in order to post.