I'm using the standard code for present & dismiss modal segue
[self dismissViewControllerAnimated:YES completion:nil];
I want to perform some method of the previous view, in the completion area of the current view.
for ex. the previous view is a menu with profile pic and more stuff, and the current view is view for changing the profile pic. when I dismiss the current view I want to update the UIImageView
of the profile at the menu view (the previous view).
Is it possible to get the instance of the previous view ?