以下代码不适合我。每当调用该方法时,应用程序就会崩溃我做错了什么?
此代码确实使用情节提要格式
在 .h 文件中
@class SendVideoViewController;
...
@property (nonatomic) SendVideoViewController *sendVideoViewController;
在 .m 文件中
#import "SendVideoViewController.h"
...
@synthesize sendVideoViewController;
...
- (IBAction)signMeUpButtonPressed:(id)sender {
termsAndConditionsViewController = [[TermsAndConditionsViewController alloc] init];
[self presentViewController:termsAndConditionsViewController animated:YES completion:nil];
//[self.view insertSubview:termsAndConditionsViewController.view atIndex:0];
}