Hi in application i have image in my UIImageView
i want to download the image and saving in the photolibrary
. Now i want to show the downloading progress to the user and give the alert message image saved in photolibrary
please tell how to achieve this one.
My image save code.
- (IBAction)down:(id)sender {
UIImageWriteToSavedPhotosAlbum(imageview.image, nil, nil, nil);
}
I have used the above code to save the image photolibrary please tell me how to add the UIProgressView
by clicking button