0

I tried to use cocoapods in an static library project iKit, and use iKit as a subproject in my main app project. When I build the main app project, an error is occur:

Look image here:

How should I struct the source and static library like that?

If I directly Use the cocoapods in main app project TestiKit, everything will be OK.

What I should do?

4

1 回答 1

1

如果 iKit 具有从 CocoaPods 提供的依赖项,那么当您以这种方式包含项目时,它们肯定不会被链接。您最好为 iKit 创建一个 podspec 并将其链接到您的主项目中。然后在这个新的 podspec 中,您可以指定 iKit 的依赖项,并且所有内容都将正确链接。这里的问题是,由于您不包括在 iKit 工作区中创建的 Pods 项目,CocoaPods 使用 Pods.xcconfig 无法链接其依赖项。

于 2013-03-14T13:10:59.300 回答