我一直试图制作一个包含.xib
的CocoaPod整整两天,但无济于事。我为我的框架提供了一个独立的Xcode项目,其中包含以下.podspec
:
Pod::Spec.new do |s|
s.name = "OrderStatusTable"
s.version = "1.2.0"
s.platform = :ios
s.ios.deployment_target = '9.0'
s.summary = "Order Status UITableView framework."
s.description = "A UITableView framework with custom view."
s.homepage = "https://github.com/myname/OrderStatusTableView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "My Name" => "My Email" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/myname/OrderStatusTableView.git", :tag => "1.2.0" }
s.source_files = "OrderStatusTable/**/*.{h,m,swift}"
s.resource_bundles = {
'OrderStatusTable' => [
'Pod/**/*.xib'
]
}
end
在我的示例项目中,我将pod 'OrderStatusTable', :git => 'https://github.com/myname/OrderStatusTableView.git', :tag => ‘1.2.0’
添加到我的Podfile中。我的.xib
文件包含在示例项目的pod中的Resources文件夹中,但我一直收到此错误:fatal error: Could not create a path to the bundle: file /Users/myname/Desktop/appname/OrderStatusTableDemo/Pods/OrderStatusTable/OrderStatusTable/OrderStatusTable.swift, line 40
它是UITableView
框架,我尝试使用单元格重用标识符注册自定义UITableViewCell
笔尖,如下所示:
public class OrderStatusTable: UITableView {
public override func awakeFromNib() {
delegate = self
dataSource = self
let podBundle = NSBundle(forClass: self.classForCoder)
if let bundleURL = podBundle.URLForResource("OrderStatusTable", withExtension: "bundle") {
if let bundle = NSBundle(URL: bundleURL) {
let cellNib = UINib(nibName: "OrderStatusTableViewCell", bundle: bundle)
registerNib(cellNib, forCellReuseIdentifier: "OrderStatusTableViewCell")
} else {
assertionFailure("Could not load the bundle")
}
} else {
assertionFailure("Could not create a path to the bundle")
// This keeps getting called
}
}
所以我不确定我是否有错误的捆绑URLForResource
或者什么?这在网上没有很好的记录。有人可以建议吗?谢谢!
答案 0 :(得分:0)
在这里,您需要将其添加到您的pod规范中。
jar cvf
对于这个特殊问题,
s.resources = "YourProjectName/*.xib"
s.resource_bundles = {
'YourProjectName' => [
'Pod/**/*.xib'
]
}
然后您的代码出错。
不要使用
s.resources = "OrderStatusTable/*.xib"
s.resource_bundles = {
'OrderStatusTable' => [
'Pod/**/*.xib'
]
}
而不是像这样使用: -
let podBundle = Bundle(for: self.classForCoder)
对于这个问题,它应该是
let podBundle = Bundle(for:YourClassName.self)