0

タブバーを備えた独自のフレームワークを作成しました。別のプログラムに実装すると、次のようになりますError

ld: framework not found OwnTabFramework
clang: error: linker command failed with exit code 1 (use -v to see invocation)

私は2日間苦労していますが、anyBodyは、私がどこで間違ったことをしたのか、またはこの種のエラーを解決する方法を見つけるのに役立ちますか?

前もって感謝します。

4

2 に答える 2

0

add it to the project and it is put into linked frameworks just like the apple ones

enter image description here enter image description here

于 2013-03-18T14:27:35.480 に答える
0

フレームワークをコンパイル プロセスに含める必要があります。Xcode Build-Setting->SearchPAth->Framework-Search-Path から。

またはコマンドラインによる簡単な例:

clang main.c -F /frameworkPath../ -framework MyFramework

リンカーは魔法のようにそれを見つけられないため;)

于 2013-03-18T13:26:51.520 に答える