Some corners of the specified UIView for iOS development are rounded corners

Source: Internet
Author: User

If you need to have all of the 4 corners of the UIView rounded, it is fairly straightforward to set the Cornerradius property of its layer (the project needs to use the Quartzcore framework). This method is not good when you want to specify a few corners (less than 4) to be rounded and the other constant.

For this scenario, several solutions are available on StackOverflow. One of the simplest and most elegant schemes is the use of Uibezierpath. A sample code is given below.

UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(120, 10, 80, 80)];view2.backgroundColor = [UIColor redColor];[self.view addSubview:view2];    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view2.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];maskLayer.frame = view2.bounds;maskLayer.path = maskPath.CGPath;view2.layer.mask = maskLayer;

which

byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight

Specifies the corners that need to be rounded corners. The parameter is of type Uirectcorner , and the optional values are:

From the name it is easy to see the meaning of the representative, using the "|" To mix it up just fine.

Some corners of the specified UIView for iOS development are rounded corners

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.