我正在使用X-code 4.3.2。 我創建了一個新的基於頁面的應用程序項目。 然後,我在dataViewController類中創建一個UIButton,以便在單擊該按鈕時跳轉到特定頁面。爲什麼我不能跳轉到UIPageView中的特定頁面?
這裏是我添加的簡單代碼。
//Create a button in dataViewController.h
@property (strong, nonatomic) IBOutlet UIButton *btn;
//Add button action
-(IBAction)jump:(id)sender{
RootViewController *root = [[RootViewController alloc]init];
[root jump2page];
}
在RootViewController的類
-(void)jump2page
{
DataViewController *targetViewController = [self.modelController viewControllerAtIndex:2 storyboard:self.storyboard];
NSArray *viewControllers = [NSArray arrayWithObjects:targetViewController,nil];
[self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:NULL];
}
當我點擊一個按鈕的方法jump2page是call.It應該去頁3月份當月, 但沒有發生,當我點擊它
我是否忘記或錯過什麼?
這與分頁滾動視圖相同嗎?在這種情況下,你可以設置currentPage屬性 – bkbeachlabs 2012-07-16 03:35:42
我不知道我只是創建一個新項目。 然後選擇基於頁面的應用程序。 最後,我添加按鈕和它的動作。 – 2012-07-16 04:35:33