Ketan Shinde
Ketan Shinde

Reputation: 1847

Navigation on click of DetailDisclosureButton?

I am using disclosure btn in UITableViewcell.When i use :

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

it navigates to anotherViewController where as when i use following it does not navigate on btn click

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

What should I do for navigation on click of DetailDisclosureButton?

Upvotes: 2

Views: 1712

Answers (1)

saadnib
saadnib

Reputation: 11145

handle event here -

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

Upvotes: 11

Related Questions