IBDesignable View Rendering times out

后端 未结 5 2020
离开以前
离开以前 2020-12-14 16:26

I\'ve been working on an app on and off for a few months starting with the first XCode 6/iOS 8 beta release. One of my favorite features added is live rendering, made possib

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-14 17:22

    Had the same problem but to a glance at this great article. It solved my problem.

    http://nshipster.com/ibinspectable-ibdesignable/

    In short

    To get these options in xcode

    Make a property like this:

    @IBInspectable var cornerRadius: CGFloat = 0 {
       didSet {
           layer.cornerRadius = cornerRadius
           layer.masksToBounds = cornerRadius > 0
       }
    }
    

提交回复
热议问题