0

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

这是错误

在此处输入图像描述

谢谢你!!编辑现在回答我的错误?? 在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

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

在此处输入图像描述 在此处输入图像描述

4

1 回答 1

2

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

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

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

[self presentViewController:second animated:YES completion:^{ }];
于 2012-10-04T10:40:13.627 回答