ios – Playground执行失败:错误:无法查找符号

我正在使用
Xcode 7.3.我已经将Playground和Frameworks放在同一个工作区中并构建了框架.我仍然收到此错误

Playground execution failed: error: Couldn't lookup symbols:  
_RestofireVersionNumber

《ios – Playground执行失败:错误:无法查找符号》

怎么解决这个?

最佳答案 如果您的库有.podspec,则可以使用
cocoapods-playgrounds生成应该可用的Playground.

$gem install cocoapods-playgrounds
$pod playgrounds Restofire.podspec

看起来该插件也对Carthage项目提供了初步支持.

该插件使用以下结构在项目文件夹中创建一个新文件夹:

RestofirePlayground
├── Podfile
├── Podfile.lock
├── Pods
│   ├── Alamofire
│   ├── Headers
│   ├── Local\ Podspecs
│   │   └── Restofire.podspec.json
│   ├── Manifest.lock
│   ├── Pods.xcodeproj
│   └── Target\ Support\ Files
│       ├── Alamofire
│       ├── Pods-TidalPlayground
│       └── Restofire
├── Restofire.playground
├── Restofire.xcodeproj
└── Restofire.xcworkspace

生成Playground之后剩下的就是构建RestofirePlayground方案然后你就可以了.

点赞