我是ios开发中的菜鸟。我需要从中删除一个项目testflight库。我一直在评论关于Testflight的所有引用线,但现在我已经得到了#34; _TFLog"的下一个错误,但我不知道如何解决它。
Undefined symbols for architecture armv7:
"_TFLog", referenced from:
-[BibliotecaViewController loadCategories] in BibliotecaViewController-49994DBCE4C92E5B.o
-[ViewController viewDidLoad] in ViewController.o
-[ViewController alertView:clickedButtonAtIndex:] in ViewController.o
-[ViewController checkUpdatesLocally] in ViewController.o
-[ViewController productsRequest:didReceiveResponse:] in ViewController.o
-[ViewController request:didFailWithError:] in ViewController.o
-[ViewController completedPurchaseTransaction:] in ViewController.o
...
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我需要做什么?
P.D。:抱歉我的英文,谢谢你!
答案 0 :(得分:1)
导入标题但不链接到库时,这是一个常见的错误。
您通常可以通过在build phases
- > link Binary with Library
部分或build settings
- > Search Paths
- >中添加库来解决此问题。 Library Search Paths
的
但在你的情况下,你不想使用TFLog
。首先在整个项目中搜索TFLog
(cmd+shift+F
)并删除相关行并尝试重建项目。
答案 1 :(得分:0)
在项目中,在 * - Prefix.pch 文件中,您需要删除下一行:
#define NSLog(FORMAT, ...) TFLog((@"%s [Line %d] " FORMAT), PRETTY_FUNCTION, LINE, ##__VA_ARGS__)