Początkowo trzeba realizować (to jest inna rozmowa ze szczególnym wybierz rzędu)
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
wewnątrz niego, używasz kodu tak:
UIMenuController *menuController = [UIMenuController sharedMenuController];
AddRouteMenuItem *menuItem = [[AddRouteMenuItem alloc] initWithTitle:@"Add to push list" action:@selector(addRouteMenuButtonPressed:)];
menuItem.indexPath = pressedIndexPath;
menuController.menuItems = [NSArray arrayWithObject:menuItem];
[menuItem release];
[menuController setTargetRect:[self.tableView rectForRowAtIndexPath:pressedIndexPath] inView:self.tableView];
[menuController setMenuVisible:YES animated:YES];
Nacisnąłeś indeks path = indexPath
ostatni punkt - to wskaźnik zmiany na przycisk akcesoriów - (void) setTargetRect: (CGRect) targetRect inView: (UIView *) targetView
zajrzyj tutaj: http://stackoverflow.com/questions/3833184/iphone-ipad-context-menu – mja
proszę zaksięguj to jako odpowiedź i pozwól mi to zaakceptować. :)) –