在Xcode 9和Swift 4中,我总是会收到一些IBInspectable
属性的警告:
@IBDesignable public class CircularIndicator: UIView {
// this has a warning
@IBInspectable var backgroundIndicatorLineWidth: CGFloat? { // <-- warning here
didSet {
backgroundIndicator.lineWidth = backgroundIndicatorLineWidth!
}
}
// this doesn't have a warning
@IBInspectable var topIndicatorFillColor: UIColor? {
didSet {
topIndicator.fillColor = topIndicatorFillColor?.cgColor
}
}
}
有没有办法摆脱它?
答案 0 :(得分:24)
也许。
执行类CircularIndicator: UIView
的复制/粘贴时,我得到的确切错误(不是警告)是:
属性不能标记为@IBInspectable,因为它的类型不能 在Objective-C中表示
通过进行此更改我解决了这个问题:
@IBInspectable var backgroundIndicatorLineWidth: CGFloat? { // <-- warning here
didSet {
backgroundIndicator.lineWidth = backgroundIndicatorLineWidth!
}
}
要:
@IBInspectable var backgroundIndicatorLineWidth: CGFloat = 0.0 {
didSet {
backgroundIndicator.lineWidth = backgroundIndicatorLineWidth!
}
}
当然,backgroundIndicator
在我的项目中未定义。
但如果您针对didSet
进行编码,看起来您只需要定义默认值,而不是使backgroundIndicatorLineWidth
可选。
答案 1 :(得分:6)
以下两点可能会对您有所帮助
由于目标c中没有可选概念,因此可选的IBInspectable会产生此错误。我删除了可选项并提供了默认值。
如果您正在使用某些枚举类型,请在该枚举之前编写@objc以删除此错误。
答案 2 :(得分:0)
@IBInspectable public var shadowPathRect: CGRect!{
didSet {
if shadowPathRect != oldValue {
setNeedsDisplay()
}
}
}
收件人
@IBInspectable public var shadowPathRect: CGRect = CGRect(x:0, y:0, width:0, height:0) {
didSet {
if shadowPathRect != oldValue {
setNeedsDisplay()
}
}
}