IOS lets view uiview display a border line on one side individually

Source: Internet
Author: User

Sometimes it is necessary to have the view show the border line on one side, when setting the layer's border is not effective. Online access to information found there is an opportunistic approach, the principle is to add a layer to the view layer, so that the layer as a border line role. According to this method I wrote a function, a friend of need can take to try.

-(void) Setborderwithview: (UIView *) View top: (BOOL) top left: (bool) left bottom: (bool) Bottom right: (bool) Right        BorderColor: (Uicolor *) color borderWidth: (cgfloat) width{if (top) {Calayer *layer = [Calayer layer];        Layer.frame = CGRectMake (0, 0, view.frame.size.width, width); Layer.backgroundcolor = color.        Cgcolor;    [View.layer Addsublayer:layer];        } if (left) {Calayer *layer = [Calayer layer];        Layer.frame = CGRectMake (0, 0, width, view.frame.size.height); Layer.backgroundcolor = color.        Cgcolor;    [View.layer Addsublayer:layer];        } if (bottom) {calayer *layer = [Calayer layer];        Layer.frame = CGRectMake (0, View.frame.size.height-width, view.frame.size.width, width); Layer.backgroundcolor = color.        Cgcolor;    [View.layer Addsublayer:layer];        } if (right) {Calayer *layer = [Calayer layer];    Layer.frame = CGRectMake (view.frame.size.width-width, 0, Width, view.frame.size.height);    Layer.backgroundcolor = color.        Cgcolor;    [View.layer Addsublayer:layer]; }}

IOS lets view uiview display a border line on one side individually

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.