我正在学习教程,因为我需要在我的应用中查看pdf文档。 链接到教程:https://www.youtube.com/watch?v=TtKoddECri0 在我制作了tableview之后,并试图创建.m和.h,文档中没有任何内容,所以我自己编写并得到以下错误。 的 Hold3januar.m
#import "Hold3januar.h"
@interface Hold3januar ()
@end
找不到'Hold3januar'的接口声明
@implementation Hold3januar
找不到'Hold3januar'的接口声明
- (id)initWithNibName (NSString *)nibNameOrNil bundle:NSbundle *)nibBundleOrNil
预期方法正文
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
'Hold3januar'不能使用'super',因为它是根类
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
'Hold3januar'不能使用'super',因为它是根类
- (void)didRecieveMemoryWarning];
预期方法正文
{
预期标识符或'('
[super didRecieveMemoryWarning];
// Dispose of any ressources that can be recreated.
}
@end