Подвид UITableViewCell не получает обратный вызов жеста смахивания при смахивании влево

Я видел другие вопросы на StackOverflow и сделал следующее:

UISwipeGestureRecognizer *swipeGestureLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(viewDidSwipeLeft:)];
swipeGestureLeft.delegate = self;
[swipeGestureLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[self.mainView addGestureRecognizer:swipeGestureLeft];

UISwipeGestureRecognizer *swipeGestureRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(viewDidSwipeRight:)];
swipeGestureRight.delegate = self;
[swipeGestureLeft setDirection:UISwipeGestureRecognizerDirectionRight];
[self.mainView addGestureRecognizer:swipeGestureRight];

Я не получаю viewDidSwipeLeft: звонки

Я также добавил это в класс tableView.

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleNone;
}

person Ashish Awaghad    schedule 26.05.2014    source источник
comment
Является ли основное представление UITableViewCell?   -  person Prathamesh Saraf    schedule 26.05.2014
comment
Вы настроены на горизонтальную прокрутку? Если это так, резюме, вероятно, крадет жест.   -  person RegularExpression    schedule 26.05.2014
comment
нет горизонтальной прокрутки. Однако я использую github.com/monospacecollective/MSDynamicsDrawerViewController.   -  person Ashish Awaghad    schedule 26.05.2014
comment
и табличное представление находится на правой панели   -  person Ashish Awaghad    schedule 26.05.2014
comment
Как выглядит метод viewDidSwipeLeft:?   -  person Pancho    schedule 26.05.2014
comment
Попробуйте это и проверьте... stackoverflow.com/a/17540632/3615320   -  person Chan    schedule 26.05.2014
comment
похоже, это проблема с библиотекой: github.com/monospacecollective/MSDynamicsDrawerViewController/   -  person Ashish Awaghad    schedule 26.05.2014