IOS 6更新代码错误切换视图

时间:2012-10-04 09:02:26

标签: ios5 uiview ios6 self xcode4.5

我正在设计一个单一视图应用程序的应用程序,我正在添加代码,以便我可以通过按钮切换视图,但每次我输入我在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];
}

继承错误

enter image description here

谢谢!! 编辑现在回答我的错误? enter image description here

enter image description here

enter image description here

顺便说一下,我真的很感激它,一旦完成这个错误,我会给你很好的答案吗?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

首先,这不是错误,而是警告。

如需帮助,您可以阅读Apple提供的文件。

要删除该警告,请使用以下代码

[self presentViewController:second animated:YES completion:^{ }];