UITableView를 길게 누름 UITableViewCell"빠른 액세스 메뉴"를 인쇄 하기 위해 a를 길게 누릅니다 . 누군가 이미 이것을 했습니까? 특히 제스처는 UITableView? 먼저 길게 누르기 제스처 인식기를 테이블보기에 추가하십시오. UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; lpgr.minimumPressDuration = 2.0; //seconds lpgr.delegate = self; [self.myTableView addGestureRecognizer:lpgr]; [lpgr release]..