我正在设计一个应用程序,它是一个单视图应用程序,我正在添加代码,以便我可以通过按钮切换视图,但是每次我输入在 IOS 5 中工作的代码时,现在都会出现错误?这是代码
#import <UIKit/UIKit.h>
@interface ViewController1 : UIViewController
- (IBAction)home:(id)sender;
@end
#import "ViewController1.h"
#import "ViewController.h"
@interface ViewController1 ()
@end
@implementation ViewController1
- (IBAction)home:(id)sender
{
ViewController *second =[[ViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
}
这是错误
谢谢你!!编辑现在回答我的错误??
顺便说一句,我真的很感激,一旦完成,我会给你一个很好的答案,这是现在的错误吗?