1
我在我的應用程序中添加了MailCore.xcodeproj,並且像在Remail應用程序中設置Header搜索路徑,庫搜索路徑和框架搜索路徑一樣。但是,當我在導入後訪問MailCore(如CTCoreAccount,CTCoreFolder等)的類中的任何其它類和創建這樣一個對象:無法訪問任何其他類中的MailCore類
#import "CTCoreAccount.h"
CTCoreAccount* account = [[CTCoreAccount alloc] init];
我會收到以下錯誤:
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_CTCoreAccount", referenced from: objc-class-ref in ImapSync.o ld: symbol(s) not found for architecture i386 collect2: ld returned 1 exit status
如何解決此錯誤?