我试试这个:
视图控制器.h
@class SecondView;
@interface Introduccion : UIViewController{
SecondView *second;
}
-(IBAction)AnimatecreditsPage:(id)sender;
@end
视图控制器.m
-(IBAction)AnimatecreditsPage:(id)sender{
second = [[SecondView alloc]initWithNibName:@"SecondView" bundle:nil];
second.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:second animated:YES];
}
我正在使用故事板,并且我已经将我的视图控制器与相应的类链接起来,当我按下按钮时,iphone 模拟器就崩溃了。我正在使用导航控制器和标签栏控制器。
谢谢!!:) 请帮我。