I have a code where if the user makes a certain touch gesture, three UIImageViews will change its image according to which gesture was made.
I do this by having an NSDictionary made to associate certain gestures with certain images.
I put an NSLog so it prints the address of the image it is displaying.
When I run it on a simulator, it works….the images show on screen and NSLog prints out the address of the image. But when I run it on my device, the images do not show on screen and NSLog prints null.
Any idea why this is happening??
Where are the images stored? Are they packaged with the bundle?