1

我有一个从 UIViewController 继承的 ViewController 类:

@interface PagerViewController : UIViewController <UIScrollViewDelegate>

在这里我可以像这样打开和关闭滚动选项:

[self setScrollEnabled:NO]; 

我将其他一些 ViewController 类添加为孩子,但问题是当我尝试在那里启用或禁用滚动时,它无法识别“setScrollEnabled”。在这个类中,我有一个按钮,我想在按下按钮时禁用“setScrollEnabled”。我怎样才能做到这一点?

4

1 回答 1

2

使用NSNotification,这将允许您调用PagerViewController类的方法,您可以在其中设置scrollEnabled属性。

NSNotification搜索关于/的示例Local Notification.

它会解决你的问题。

于 2013-03-18T16:45:09.520 回答