In my app I take the snap shot of the screen and save it to the iPad's gallery as below
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
But then it shows a pop up saying
"App" Would Like to Access Your Photos with Don't Allow and OK button
After I tap OK it save he image to the gallery but I want to handle this popup programmatically. I don't want to show popup to user.
I am using ios7
Is this possible and how it can be done ?
Would appreciate your help.