Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
複数のプロジェクトで共通のコードを共有するために、独自のポッドを作成しています。「pod lib create」を使用して構造を作成しました。自分のポッドの依存関係はどこで指定できますか? Pod のルート ディレクトリに新しい Podfile を作成するには、「pod init」を実行する必要がありますか?
依存関係は Pod の podspec ファイルに入れることになっています。最も簡単な例は次のとおりです。 spec.dependency 'AFNetworking', '~> 1.0' spec.dependency 'RestKit/CoreData', '~> 0.20.0'
spec.dependency 'AFNetworking', '~> 1.0' spec.dependency 'RestKit/CoreData', '~> 0.20.0'
それがあなたが目指しているものである場合は、 spec.librariesand spec.frameworks、およびsubspecsもあることに注意してください-あなたの質問からは不明です。
spec.libraries
spec.frameworks