Top "Ibdesignable" questions

IBDesignable is a designation given to views in Xcode 6 that allows them to be rendered directly in Interface Builder without the need to build and run the application.

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
IB Designables: Failed to render and update auto layout status

I have a custom view (xib) that has a UIButton inside of it, I made id IBDesignable doing the following: …

ios swift xcode interface-builder ibdesignable
Failed to render instance of IB Designables

I have an Objective-C and Swift mixed dynamic framework. And the mixed framework was linked with two pure Objective-C dynamic …

objective-c xcode swift interface-builder ibdesignable
Interface Builder - Failed to load designables from path (null)

I have some custom controls I have created and I'm them using in a new project. However, I keep getting …

ios interface-builder xcode6 custom-controls ibdesignable
Round Corners UIView in Swift 4

In swift 3 I could do something like this to make my UIView corners round: import UIKit @IBDesignable class DesignableView: UIView { } …

ios swift uiview swift4 ibdesignable
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
Instantiate view from nib throws error

I tried to make @IBDesignable UIView subclass following this (link) tutorial. First custom view goes fine. But when I try …

ios swift uiview xib ibdesignable
IBInspectable Creating a Dropdown and better Organization

In short, I would like to create an @IBInspectable property that allows you to select from a list of things …

swift xcode6 ibdesignable
@IBDesignable not working in iOS swift 3

What I did: Deleted derived data, Restarted xcode, Editor->Refresh all views I am getting Designables build failed in …

ios swift xcode ibdesignable
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