当把CocoaPods生成的workspace移动到上层目录时,需要改下Pods.xcconfig和工程里的一些设置,就通常没什么难度。
当遇到这个问题时:
- Could not automatically select an Xcode project. Specify one in your Podfile like so:
- xcodeproj 'path/to/Project.xcodeproj'
在Podfile文件里指定下工程目录就行了,比如我在Podfile文件添加这行就行了:
- ......
- xcodeproj 'Portfolio/Portfolio.xcodeproj'
- ......
当在update或install时遇到这个问题:
- Unable to find a specification for `xxxxx (~> 1.x.x)` depended upon by Podfile.
- pod repo remove master
- pod setup