Is there a way to call code when a modal view is finished dismissing?
EDIT:
I\'m sorry, I didn\'t clarify earlier. I\'m trying to dismiss a UIImagePickerControll
You have to dismiss the modalViewController somehow right? Either a UIButton, or by code:
- (void)dismissModalViewControllerAnimated:(BOOL)animated
In the IBAction (e.g. delegate) for the UIButton or in the method above, call whatever code you want.