-2

如何将视图控制器标记为符合 UIGestureRecognizerDelegate 协议。

我被告知在另一篇文章中执行此操作,但似乎无法在任何地方找到如何执行此操作。

4

2 回答 2

3

在视图控制器的 .h 或 .m 文件中找到这一行:

@interface YourViewController : UIViewController

添加<UIGestureRecognizerDelegate>使该行如下所示:

@interface YourViewController : UIViewController <UIGestureRecognizerDelegate>
于 2013-06-07T18:44:44.817 回答
1

In .h or .m file, add <UIGestureRecognizerDelegate> to the end of the @interface line.

于 2013-06-07T18:43:24.873 回答