I\'m an Android developer working on an iOS version of our app. I need to know how to achieve behavior similar to startActivityForResult on Android. I need to show a new view co
Generally you can use UINavigationController to enclose your chain of viewControllers. You can then navigate back and forth between viewControllers. For callback you can use viewWillDissapear: delegate method on your second view controller and do some action from there.