从 pods 资产中读取命名颜色

Reading named colors from pods assets

我已经创建了我的框架,其中包括将在应用程序中使用的命名颜色,但是当我 运行 应用程序崩溃并出现空错误时,即使颜色包含在 pod 的资产文件中。

示例代码?

   static var blue:UIColor = UIColor(named: "AppBlueColor")!

它因空异常而崩溃。请帮忙。谢谢。

像这样在 podspec 中包含包含图像文件的资源包:

s.resources = "Sources/Images.xcassets"

还有运行pod install设置后。