在我的应用中,我正在尝试检测滑动手势以导航到下一页...
请在下面找到我的以下代码
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRightAction:)];
swipeRight.direction = UISwipeGestureRecognizerDirectionRight;
swipeRight.delegate = self;
[cardsGridView addGestureRecognizer:swipeRight];
当我运行我的应用程序时,我收到以下警告......
warning: class 'MyGesture' does not implement the 'UIGestureRecognizerDelegate' protocol
请帮助我解决我在这里失踪的问题。
UPDATE1:任何人都可以给我看一个工作代码来检测滑动....
答案 0 :(得分:4)
UIGestureRecognizerDelegate
协议仅定义可选方法。现在有两种方法可以摆脱警告:
swipeRightAction
方法调用仍然有效。如果需要设置委托,请在委托类的头文件中指明该类通过在超类名后面的尖括号中指定它来实现协议:
@interface YourClass : UIViewController <UIGestureRecognizerDelegate> {
...
}
编辑:谢谢,我忘了逃避尖括号。