所以我刚刚创建了一个新项目,它在我触摸文件之前显示错误,我是Xcode的新手,但这是我的代码:
#import "ViewController.h"
@interface "ViewController.h"
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else {
return YES;
}
}
@end
并显示“@interface”ViewController.h中的标题中的错误“”
答案 0 :(得分:8)
这是错误。你想要@interface ViewController
。
答案 1 :(得分:0)
是
@interface ViewController
@end
导入标题时,必须使用" "
,<>
框架。
@interface
是一个Objective-c对象,在本例中是一个类,因此您不需要""
。