Navigation on click of DetailDisclosureButton?
I am using disclosure btn in UITableViewcell.When i use :
cell.accessoryType开发者_StackOverflow社区 = 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?
handle event here -
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
精彩评论