Top "Ibinspectable" questions

IBInspectable is a keyword that enables a property to be set from Xcode Interface Builder.

IB_DESIGNABLE, IBInspectable -- Interface builder does not update

I have the following set of code: CustomView.h #import <UIKit/UIKit.h> IB_DESIGNABLE @interface CustomView : UIView @…

ios interface-builder ibdesignable ibinspectable
How to set default values for IBInspectable in Objective-C?

I know default values of IBInspectable-properties can be set as: @IBInspectable var propertyName:propertyType = defaultValue in Swift. But how do …

objective-c xcode swift interface-builder ibinspectable
IBDesignable Build Failed

I have Created IBDesignable and IBInspectable custom class to give shadow and corner radius for view But When I assign …

ios swift xcode ibdesignable ibinspectable
Can you add IBDesignable properties to UIView using categories/extensions?

For those that don't know what I'm talking about, Xcode 6.0 added new features, IBDesignable and IBInspectable. When you tag your …

ios interface-builder xcode-storyboard ibdesignable ibinspectable
Using IBDesignable and prepareForInterfaceBuilder with a UILabel

I have a subclass of UIView called MyView that I am creating. In it there is a UILabel (this is …

ios swift interface-builder ibdesignable ibinspectable