ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • StoryBoard IB_DESIGNABLE
    iOS/Objective C 2017. 1. 3. 11:41

    UIView+IB.h

    //h파일에 넣어주면 스토리보드에 UIView옵션이 생긴다.

    //그 옵션에 값을 넣어준다면 코딩으로 layer를 수정하지않아도 View생성시 값이 들어간다. 때에따라 자유롭게 사용하자.

    //(예) borderWidth

    #import <UIKit/UIKit.h>


    IB_DESIGNABLE

    @interface UIView (IB)


    @property (nonatomic, assign) IBInspectable CGFloat borderWidth;


    @end


    UIView+IB.m

    #import "UIView+IB.h"


    IB_DESIGNABLE

    @implementation UIView (IB)


    //borderwidth make

    - (CGFloat)borderWidth;

    {

        return self.layer.borderWidth;

    }


    - (void)setBorderWidth:(CGFloat)borderWidth

    {

        self.layer.borderWidth = borderWidth;

    }


    댓글