xcode编译错误

Undefined symbols for architecture x86_64:

"_main", referenced from:

implicit entry/start for main executable

ld: symbol(s) not found for architecture x86_64

clang: error: linker command failed with exit code 1 (use -v to see invocation)
最新回答
没纸就用手抠

2024-04-26 18:06:01

你是不是把main函数打错了。。
伤疤像㈠朵鲜花

2024-04-26 02:00:24

Id这个符号找不到。。。你是不是用了id()函数?
幽兰黛尔

2024-04-26 20:05:51

不小心把main函数删除了,新建一个文件main.m,加入以下内容:
#import <UIKit/UIKit.h>

#import "AppDelegate.h"

int main(int argc, char * argv[]) {

@autoreleasepool {

return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

}

}
指尖落樱舞

2024-04-26 09:21:31

你们怎么解决的啊,我也碰到类似的问题了
守护在此方

2024-04-26 11:27:41

哥们 你后来怎么解决的呀