I am using the solution posted in this thread:
However, that gave an error on the following line that "saveImage" was undeclared.
saveImage = [[UIAlertView alloc] initWithTitle:@"Sa...
So I changed the code to read:
UIAlertView *saveImage = [[UIAlertView alloc] initWithTitle:@"Sa...
and the error went away, and the alert displays great.
The problem is that when I try to dismiss the alert below in didFinishSavingWithError it gives the same error from above that "saveImage" is undeclared (first use in function).
I've only been playing around with iPhone development for a few days, so please forgive me if this a a simple/stupid question, but ...
How do I reference that alert inside of didFinishSavingWithError to close it?