Podfile に行を追加して、PaperTrailLumberjack をプロジェクトに追加しましたpod 'PaperTrailLumberjack'
。
次に、pod install
コマンドを実行したところ、次の結果が得られました。
Analyzing dependencies
Downloading dependencies
Installing AFNetworking 2.1.0 (was 2.1.0)
Installing CocoaAsyncSocket (7.3.5)
Installing CocoaLumberjack (1.8.1)
Installing PaperTrailLumberjack (0.1.0)
Generating Pods project
Integrating client project
うまくいっているようで、Pods プロジェクトでも正しいターゲットを取得できます。インポートすることもでき 、インテリセンスで提案されているDDLog.h
ようなマクロを取得することもできます。DDLogVerbose
ただし、プロジェクトをコンパイルすると、エラーが発生します。
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_DDLog", referenced from:
objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
遅くて疲れているので、ばかげたことを忘れていることを願っています。しかし、ポッド ターゲットの設定は のターゲットの設定と同じでAFNetworking
あり、正常に動作しています。