Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write an "if" statement of an uiimageview to see which image is in the image currently. So if the uiimageview has this certain image, lets say "hello.png", then do this action. If it has "bye.png" then do this action.

Thanks,

Kevin

share|improve this question

2 Answers

up vote 1 down vote accepted

I would do that by a BOOL field in your Model instead of checking the UIImageView.

You can update the boolean flag at the same time you update your imageview.

MVC - Model View Controller.

Do not relly on view-related items for business logic. You might change to a "MovieViewController" (I know it doesn't exist!) in the future and having the separation of concerns is the best.

share|improve this answer

UIImageView objects don't keep a name as part of the object. You need to keep track of what file is in what image view either by subclassing and adding a name attribute or some other means.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.