navigationItem:didEndRenamingWithTitle:
Tells the delegate when the rename process ends.
Declaration
- (void) navigationItem:(UINavigationItem *) navigationItem didEndRenamingWithTitle:(NSString *) title;Parameters
- navigationItem:
The navigation item with the changing title.
- title:
The new title of the navigation item.
Discussion
UIKit calls this method after a person finishes renaming the navigation item. Implement this method to update your data model with the new title as needed.
UIKit updates the navigation item’s title automatically. However, if you want to modify the final title that the system passes in to this method, you must update the navigation item’s title manually.