我正在尝试将pdf存储在CocoaPod(PUIKit
- 我自己的)中,并在项目中使用它们(FiDemo2
)。我可以successfully将pdf
安装到FiDemo2
中。
我无法正确加载和使用它们。
首先,我成功地将正确的捆绑包作为"org.cocoapods.Myproject"
。
class This {
static var bundle: Bundle {
return Bundle(for: This.self)
}
}
var bundle: Bundle {
return This.bundle
}
阻止者:当我尝试运行时,
let path = bundle.url(forResource: "add", withExtension: "pdf")
路径是零,即使我有正确的捆绑和my pdf is in it。如何从我的项目(PUIKit
)中的pod(FiDemo2
)加载pdf?