我可以使用以下方法作为IBAction

时间:2012-07-05 12:09:26

标签: objective-c cocoa-touch interface-builder uipageviewcontroller

我可以使用以下功能作为IBAction - 点击按钮吗?如果是,那么请告诉我如何...

-(UIViewController *)pageViewController:(UIPageViewController *)pageViewController
      viewControllerAfterViewController:(UIViewController *)viewController

-(UIViewController *)pageViewController:(UIPageViewController *)pageViewController 
     viewControllerBeforeViewController:(UIViewController *)viewController

1 个答案:

答案 0 :(得分:2)

不,你不能。

IBAction实际上等于void - >只能连接void返回方法。

http://cocoadev.com/wiki/IBAction
IBOutlet and IBAction

您所指的方法也在实现UIPageViewControllerDataSource,因此UIPageViewController应该调用它们,但从来没有,请参阅Delegates and Data Sources