我创建了一个新项目并设置(运行)构建配置版本,问题。
这是我的代码。
#import "ViewController.h"
@interface testTests : XCTestCase
@end
@implementation testTests
- (void)testExample {
ViewController *vc = [[ViewController alloc] init];
XCTAssertNotNil(vc);
}
@end
问题
架构x86_64的未定义符号: “_OBJC_CLASS _ $ _ ViewController”,引自: testTests.o中的objc-class-ref ld:找不到架构x86_64的符号 clang:错误:链接器命令失败,退出代码为1(使用-v查看调用)
答案 0 :(得分:0)
Oups,对不起......你错过了一个指向CoreFoundation框架的链接!
LIBS += CoreFoundation