所以我第一次制作iPad应用程序,现在我有一个视图控制器,它的按钮显示在故事板上,所有我想要做的就是当我点击某个按钮时,它带来了我到了一个新的屏幕。
所以我为第二个屏幕创建了第二个viewcontroller类,我为按钮创建了一个IB Action方法,但它是空的,因为我不知道如何实现它。那么我该怎么做呢?
答案 0 :(得分:1)
试试吧......
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
// iPad-specific interface here
LBAlertLoginViewController *lbAlertLoginVc = [[LBAlertLoginViewController alloc]initWithNibName:@"LBAlertLoginViewController_iPad" bundle:nil];
[self.navigationController pushViewController:lbAlertLoginVc animated:YES];
[lbAlertLoginVc release];
}
else
{
// iPhone and iPod touch interface here
LBAlertLoginViewController *lbAlertLoginVc = [[LBAlertLoginViewController alloc]initWithNibName:@"LBAlertLoginViewController_iPhone" bundle:nil];
[self.navigationController pushViewController:lbAlertLoginVc animated:YES];
[lbAlertLoginVc release];
}
希望我帮助过。