我从 Objective-C 开始,我有一个问题。
编译器给了我这个错误信息:
Semantic Issue: Use of undeclared identifier
这是main.m
代码:
#import <UIKit/UIKit.h>
#import "HMJAppDelegate.h"
int main(int argc, char *argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([HMJAppDelegate class]));
}
}
此错误位于 main.m 文件中。
我该如何解决这个问题?