Reputation: 601
Hi
I want to create back button and place in table view page.
That is I need when I press button it will goes next page of tableview page from one UIView subclass to table view control class.
Here i need to create navigation controller with back button in iPhone.
Can anyone help me.
Upvotes: 0
Views: 1143
Reputation: 1579
self.navigationController.navigationBar.backItem.title = @"Title of back view";
This will do.
Upvotes: 2