iOS equivalent of Android finish()
How did you present this view controller?
Did you use presentViewController:animated:completion:
? If so, you want something like this:
[self dismissViewControllerAnimated: YES];
If you are using pushViewController:animated:
, you are not talking about a modal view. You are talking about a normal ViewController you pushed onto the stack. To "undo" this, you need to pop the view controller:
[self.navigationController popViewControllerAnimated: YES];
Though finish()
and [self dismissViewControllerAnimated:YES]
are similar in terms of functionality, but they are not exactly same, when we call finish()
method in the Android, we are programatically telling the Android system to destroy the activity completely from the memory, when we override the onDestroy()
activity life cycle callback and add a log, then logs are shown when finish()
is called. onDestroy()
is also called when the system needs resources and it frees the memory by finishing the activity. But
[self dismissViewControllerAnimated: YES];
does not remove the UIViewController instance from the memory, the equivalent callback method for onDestroy() in IOS is viewDidUnload() which is not called on the message dismissViewController. I think the IOS system can only free the memory for the UIViewController instance when system needs resources but we can't programatically do that.