Ravi kumar
Ravi kumar

Reputation: 601

How to create back button in table view in iphone

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

Answers (1)

iamsult
iamsult

Reputation: 1579

self.navigationController.navigationBar.backItem.title = @"Title of back view";

This will do.

Upvotes: 2

Related Questions