Reputation: 1847
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
Reputation: 11145
handle event here -
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
Upvotes: 11