Question related to photogallery
Posted
by user217572
on Stack Overflow
See other posts from Stack Overflow
or by user217572
Published on 2010-04-07T07:05:10Z
Indexed on
2010/04/07
7:13 UTC
Read the original article
Hit count: 226
iphone
I'm saving my image to photo gallary , but I want to fetch this image on click of UIButton and want to show it on the UIImageview or UIview.My code for saving image on photo gallery is as under:-
I don't want to use UIImagePickerViewController any where in my programme
UIImage *image = [UIImage imageNamed:@"flower.png"]; UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);
© Stack Overflow or respective owner