Draw dotted lines and ps dotted lines

Source: Internet
Author: User

Draw dotted lines and ps dotted lines

1. Draw a dotted line

CAShapeLayer * shapeLayer = [CAShapeLayer layer];
[ShapeLayer setBounds: self. view. bounds];
[ShapeLayer setPosition: self. view. center];
[ShapeLayer setFillColor: [[UIColor clearColor] CGColor];

// Set the dotted line color to blackColor.
[ShapeLayer setStrokeColor: [[UIColor blackColor] CGColor];


// 3.0f set the width of the dotted line
[ShapeLayer setLineWidth: 3.0f];
[ShapeLayer setLineJoin: kCALineJoinRound];

// 3 = line width 1 = spacing of each line
[ShapeLayer setLineDashPattern:
[NSArray arrayWithObjects: [NSNumber numberWithInt: 3],
[NSNumber numberWithInt: 3], nil];

// Setup the path
CGMutablePathRef path = CGPathCreateMutable ();
// Represents the x, y of the initial Coordinate
//, 10 represents the x, y of the initial Coordinate
CGPathMoveToPoint (path, NULL, 0,100 );
CGPathAddLineToPoint (path, NULL, 320,100 );

[ShapeLayer setPath: path];
CGPathRelease (path );

// You can change self to any UIView you want. The demo is put in UITableViewCell.
[View. layer addSublayer: shapeLayer];

Related Article

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.