当我使用pnet模型时,我的Xcode是10.1,该模型已转换为集成到ios应用程序中,并且看到错误
调用中的参数标签不正确(具有“ of:”,预期为“ rawValue:”)
,在pnet.swift中的下面一行。我该如何解决此问题:
convenience init() {
try! self.init(contentsOf: type(of:self).urlOfModelInThisBundle)
}
答案 0 :(得分:0)
do {
try pnet(contentsOf: URL(fileURLWithPath: "your path here"))
} catch {
print(error.localizedDescription)
}
像这样尝试或使用初始化程序编写自己的子类
class pnet2: pnet {
convenience init() {
try! self.init(contentsOf: type(of:self).urlOfModelInThisBundle)
}
convenience init(hah: Bool = true) {
try! self.init(contentsOf: URL(fileURLWithPath: ""))
}
}