"NSCoding is not supported" 尝试使用 KWStepper 自定义 UI 步进器 pod
"NSCoding is not supported" when trying to use KWStepper custom UI stepper pod
我正在使用名为 KWSepper
的自定义步进器,发现 on GitHub。我在 table 视图单元格文件中使用了该协议。当尝试访问 VC 中的 table 视图时,我在来自作者 KWStepper
swift 文件的这行代码中收到致命错误:
public required init?(coder aDecoder: NSCoder) {
fatalError("KWStepper: NSCoding is not supported!")
}
该代码表明此自定义步进器从未打算从情节提要中实例化。不要从情节提要中实例化步进器!按预期仅在代码中实例化它。遵循 github 站点上的示例代码:
stepper = KWStepper(decrementButton: decrementButton, incrementButton: incrementButton)
我正在使用名为 KWSepper
的自定义步进器,发现 on GitHub。我在 table 视图单元格文件中使用了该协议。当尝试访问 VC 中的 table 视图时,我在来自作者 KWStepper
swift 文件的这行代码中收到致命错误:
public required init?(coder aDecoder: NSCoder) {
fatalError("KWStepper: NSCoding is not supported!")
}
该代码表明此自定义步进器从未打算从情节提要中实例化。不要从情节提要中实例化步进器!按预期仅在代码中实例化它。遵循 github 站点上的示例代码:
stepper = KWStepper(decrementButton: decrementButton, incrementButton: incrementButton)