xcode 找不到构建错误框架
xcode build error framework not found
好的,使用 xcode7、swift 和 ios7 目标。
我安装了可可pods
我将终端更改为我的项目文件夹和 运行 pod setup
现在 Podfile 与我的 .xcodeproj 文件位于同一目录中,如下所示:
plaform :ios, '7.0'
use_frameworks!
pod 'OAStackView'
我将终端更改为我的项目文件夹和 运行 pod install
现在,如果我尝试构建,我会得到:
Frame not found OAStackView clang: error: linker command failed with
exit code 1 (use -v to see invocation)
我是否应该做任何其他事情来让 OAStackView 工作? (我验证了这个问题也发生在其他 pods 上)我还没有将它导入任何单元或任何东西,只是试图编译
我想你可能会打开 .xcodeproj
而不是打开 .xcworkspace
。
对于 CocoaPods 我们必须打开 .xcworkspace
文件.
好的,使用 xcode7、swift 和 ios7 目标。
我安装了可可pods
我将终端更改为我的项目文件夹和 运行 pod setup
现在 Podfile 与我的 .xcodeproj 文件位于同一目录中,如下所示:
plaform :ios, '7.0'
use_frameworks!
pod 'OAStackView'
我将终端更改为我的项目文件夹和 运行 pod install
现在,如果我尝试构建,我会得到:
Frame not found OAStackView clang: error: linker command failed with exit code 1 (use -v to see invocation)
我是否应该做任何其他事情来让 OAStackView 工作? (我验证了这个问题也发生在其他 pods 上)我还没有将它导入任何单元或任何东西,只是试图编译
我想你可能会打开 .xcodeproj
而不是打开 .xcworkspace
。
对于 CocoaPods 我们必须打开 .xcworkspace
文件.