I have a class like this, and this IB doesn't show the property foo1
in inspection pane.
@IBDesignable
final class Foo: UIView {
@IBInspectable var bar1 = CGFloat(0)
}
What's wrong?
(Xcode 10.1)
I have a class like this, and this IB doesn't show the property foo1
in inspection pane.
@IBDesignable
final class Foo: UIView {
@IBInspectable var bar1 = CGFloat(0)
}
What's wrong?
(Xcode 10.1)
Copyright © 2021 Jogjafile Inc.
I don't know why, but explicit property type expression fixes the problem.
I really don't know why one form doesn't work while the other works. I hope Apple to fix this ASAP.