iOS implementation draws dashed lines

Source: Internet
Author: User

Tag: Draw a dashed line

Be sure to override the -(void) drawrectin the UIView class: (cgrect) Rect method to draw the line;


Draw UIView

-(void) DrawRect: (cgrect) rect

{

[ self drawLine];

}


/**

* Draw Line

*/

-(void) DrawLine

{

//1. Get Context

cgcontextref context = uigraphicsgetcurrentcontext();

//2. Create a variable path and set the path

cgmutablepathref path = cgpathcreatemutable();

//1) set start point

Cgpathmovetopoint (Path, NULL, N, 215);

//2) Set the target point

cgpathaddlinetopoint(path, NULL, a. );

//3. To add a path to the context

Cgcontextaddpath (context, path);

//4. Setting Context Properties

/**

Kcgpathstroke: Draw line ( Hollow)

Kcgpathfill: filled ( solid )

Kcgpathfillstroke: draw line and fill

*/

Cgcontextdrawpath(context, kcgpathfillstroke);

//5. Draw Path

Cgcontextdrawpath(context, kcgpathfillstroke);

//6. Release Path

cgpathrelease(path);

}




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.