如何将CocoaPod框架添加到Xcode 8 Playground

时间:2016-10-31 08:28:00

标签: xcode cocoapods swift-playground

我尝试在Xcode项目中向Playground添加一些pod。遗憾的是,自更新以来,唯一支持的范围是目标,并且不再支持link_with

错误:

  

[!]无效Podfile文件:[!]现在不支持Podfile中link_with的规范,请改用目标块。

当我使用目标块时,我收到此错误:

  

[!]无法找到名为MyPlayground的目标,确实找到Target_1Target_2

  

[!]无法找到名为MyPlayground.playground的目标,确实找到Target_1Target_2

还尝试在Target_1 target范围内添加:

错误

  

[!]无效的Podfile档案:[!]目标MyPlayground的不受支持的选项Target_1

向Playground源添加依赖项的最简单方法是什么?

2 个答案:

答案 0 :(得分:8)

<强>更新

截至:

  

Xcode 8.2

您不再需要将pod文件夹添加到资源中,只需像在项目中一样使用它。

示例:

Playground

  

Pre Xcode 8.1

感谢<html ng-app="my-app" ng-controller="controller_name"> <head> <meta charset="utf-8"> <title>{{scopeVar}}</title> </head> </html> ,我找到了一个基于他的第一个建议的解决方案。

要将CocoPods框架添加到<html>,请按以下步骤操作:

  1. 将pod添加到您的pod文件并点击Eric Aya
  2. 添加新的Playground文件
  3. 点击游乐场中的Playground文件夹
  4. 点击+ pod install
  5. 在我们的案例Sources
  6. 中添加您的pod文件夹
  7. 导入项目窗格框架Add Files to Sources
  8. 构建并访问您的框架!
  9.   

    第3步

    Step 3

      

    第4步

    Step 4

      

    第5步

    Step 5

      

    步骤6,7

    Step 6, 7

答案 1 :(得分:3)

在Xcode 8.2中:

  1. 点击左栏中的项目名称
  2. 点击&#34;新文件&#34;并选择&#34;游乐场&#34;
  3. 导入已安装在Podfile中的窗格
  4. 可能会进行构建并运行以消除错误,如果它暂时无法找到pod
  5. 那就是它!你应该好好去