Sse IBInspectable and IB_DESIGNABLE Bug changes not show in storyboard?

488 Views Asked by At

I reading this article IBInspectable / IBDesignable and flow step,But I found change not immediately rendered on storyboard.Can anyone known why? My Xcode Version:7.1

enter image description here

My main code:

ViewController.h

#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface ViewController : UIViewController


@end

UIView+CornerRadius.h

#import <UIKit/UIKit.h>

@interface UIView (CornerRadius)
@property(nonatomic ,assign) IBInspectable CGFloat cornerRadius;
@end

UIView+CornerRadius.m

#import "UIView+CornerRadius.h"

@implementation UIView (CornerRadius)

-(void)setCornerRadius:(CGFloat)cornerRadius {
    self.layer.cornerRadius = cornerRadius;
    self.layer.masksToBounds = cornerRadius > 0;
}

-(CGFloat)cornerRadius {
    return  self.layer.cornerRadius;
}

@end
1

There are 1 best solutions below

1
On

I've tested your code in Xcode, and I found that if you declare the view on storyboard as an instance of UIView+CornerRadius, it really don't work. But if you create a subclass of UIView or your UIView+CornerRadius category, and declare the view as this subclass, it will work fine.

I'll attach a screenshot to demonstrate: enter image description here