我有一个类ViewController,它来自UIViewController:
@interface PagerViewController : UIViewController <UIScrollViewDelegate>
在这里我可以像这样打开和关闭滚动选项:
[self setScrollEnabled:NO];
我将一些其他ViewController类添加为子项,但问题是当我尝试启用或禁用其中的滚动时,它无法识别“setScrollEnabled”。在这个课程中,我有一个按钮,我想在按下按钮时禁用“setScrollEnabled”。我怎么能这样做?
答案 0 :(得分:2)
使用NSNotification
,您可以调用PagerViewController
类的方法,您可以在其中设置scrollEnabled
属性。
搜索有关NSNotification
/ Local Notification.
它将解决您的问题。