我正在设计一个单一视图应用程序的应用程序,我正在添加代码,以便我可以通过按钮切换视图,但每次我输入我在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];
}
继承错误
谢谢!! 编辑现在回答我的错误?
顺便说一下,我真的很感激它,一旦完成这个错误,我会给你很好的答案吗?
答案 0 :(得分:2)
首先,这不是错误,而是警告。
如需帮助,您可以阅读Apple提供的文件。
要删除该警告,请使用以下代码
[self presentViewController:second animated:YES completion:^{ }];