1
我試試這個:如何在Xcode 4.3中使用Storyboard實現UIModalTransitionStylePartialCurl?
ViewController.h
@class SecondView;
@interface Introduccion : UIViewController{
SecondView *second;
}
-(IBAction)AnimatecreditsPage:(id)sender;
@end
ViewController.m
-(IBAction)AnimatecreditsPage:(id)sender{
second = [[SecondView alloc]initWithNibName:@"SecondView" bundle:nil];
second.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:second animated:YES];
}
進出口使用故事板,我已經聯繫我的視圖 - 控制與相應的班,當我按下按鈕,iPhone模擬器只是崩潰..即時通訊使用導航控制器和標籤欄控制器。
謝謝! :) 請幫幫我。
謝謝,我找到了標識符選項..和它的作品!非常感謝! :D再次感謝!^_ ^ – user1676370