Custom controls to set properties and show in real time and preview in Xib

Source: Internet
Author: User

Key words:

@IBDesignable: See the effects of xib settings in real time

@IBInspectable: Provide the settings property to Xib, you can see this property in Xib

Scene:

Customize a Uitextfield, and provide BorderColor, BorderWidth, cornerradius three attributes;

Requirements: These three properties can be displayed in Xib, change the attribute value, can preview the effect in real time.

1, we first customize the class:

1 Import UIKit2 3 //@IBDesignable: See the effects of xib settings in real time4 @IBDesignable5 classYstextfield:uitextfield {6     7     //@IBInspectable: Provide the settings property to Xib, you can see this property in Xib8@IBInspectable var bordercolor:uicolor?{9 didset{TenSelf.layer.borderColor = bordercolor?. Cgcolor One         } A     } -      -     //@IBInspectable: Provide the settings property to Xib, you can see this property in Xib the@IBInspectable var borderwidth:cgfloat =0{ - didset{ -Self.layer.borderWidth =BorderWidth -         } +     } -      +     //@IBInspectable: Provide the settings property to Xib, you can see this property in Xib A@IBInspectable var cornerradius:cgfloat =0{ at didset{ -Self.layer.cornerRadius =Cornerradius -Self.layer.masksToBounds =true -         } -     } -}

2. Create a new xib, drag into a uitextfield, and change its class counterpart to the class we just customized: Ystextfield

3, in the property bar we can see the properties we have defined

Custom controls to set properties and show in real time and preview in Xib

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.