0

我克隆了 repro 并打开了 Material xcode 工作空间。使用示例的最佳方式是什么?当我在 Programmatic 下选择一个示例时,例如 MaterialLayout,我得到运行时错误:

dyld: Library not loaded: @rpath/libswiftAVFoundation.dylib
  Referenced from: /Users/robcecil/Library/Developer/Xcode/DerivedData/Material-gtachugnpsgijdekhozchyiudycc/Build/Products/Debug-iphonesimulator/Material.framework/Material
  Reason: image not found

在其他情况下,很难找到 Material 框架......

谢谢

4

1 回答 1

0

要设置示例项目,您需要编译 Material.framework,然后将框架嵌入到您要运行的项目中。

  1. 打开示例目录中的材料工作区。

  2. 通过在 Xcode 导航栏中选择方案来编译 Material.framework 项目。该设备需要在通用设备或实际的 iOS 设备上,而不是模拟器上。

  3. 在示例目录中单击要运行的项目。

  4. 在项目检查器中打开“常规”页面。

  5. 转到 Embedded Binaries,然后添加 Material.framework 二进制文件。

  6. 在顶部导航栏中选择您要运行的项目方案。

  7. 按运行。

检查安装wiki 页面。

于 2016-02-03T18:10:10.233 回答