How can I trigger when a bar button is clicked in UINavigationController?
As I need to reset the image in the details view开发者_运维问答 when the bar button item "Back" is clicked.
Question is a bit vague. 2 possible answers.
Link the bar button item in IB to a method in your view controller object that does the reset when clicked.
I assume you want to reset something when the view controller unloads or disappears. You will want to see -()viewdidunload. http://developer.apple.com/library/ios/ipad/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html
精彩评论