Working on updating my app to have a base set of code that cuts across macOS, iOS, tvOS, watchOS
I’m writing a protocol to use across all the platforms that would be “designable” inside Interface Builder, but I cannot make protocol variables Inspectable when they are defined implemented in the class/struct. Any thoughts on making this possible?
Are you sure that's because it's defined in a protocol and not because it's a `CGColor`. Can you try it with `UIColor`? I don't think CG types are supported with `@IBInspectable`.
- Dennis
···
Sent from my iPhone
On 19. Apr 2017, at 4:43 AM, Cavelle Benjamin via swift-users <swift-users@swift.org> wrote:
I don’t post to this mailing list very often.
Working on updating my app to have a base set of code that cuts across macOS, iOS, tvOS, watchOS
I’m writing a protocol to use across all the platforms that would be “designable” inside Interface Builder, but I cannot make protocol variables Inspectable when they are defined implemented in the class/struct. Any thoughts on making this possible?