I am creating an iPad application with multiple images ( UIImageViews ) in horizontal scrolling. I want the user to be able to save images in their Photo Library when they click on one of UIImageView s. I love how Safari deals with this issue: just press and hold until a pop-up menu appears, and then click Save Image. I know there is " UIImageWriteToSavedPhotosAlbum ". But I'm new to iOS development, and I'm not too sure where to go with it and where to put it (i.e. How to determine which image was listened to).
From what I found, I saw people use UIImage instead of UIImageView . Do I need to convert my view to UIImage ? If so, how? How to determine when a user deletes images, and which UIImageView was used? If you could point me in the right direction and possibly some examples, I would really appreciate it.
iphone xcode ipad uiimageview
Brian
source share