SoFunction
Updated on 2025-04-03

Basic examples of drawing basic graphics with CGContextRef in iOS App development

Graphics Context is a graphic context, which can also be understood as a canvas. We can draw operations on it. After the drawing is completed, put the canvas into our view to display it. The view is regarded as a picture frame.
CGContextRef is powerful, and we can draw various graphics with the help of it. Using these techniques flexibly during development can help us provide our code level.

First create a custom CustomView class integrated from UIView.
Implement the code in.

Copy the codeThe code is as follows:

#import <QuartzCore/>

Override the DranRect method, where the graph is drawn.
After the CustomView is written, it needs to be used in the view controller.
How to use:
Copy the codeThe code is as follows:

  CustomView *customView = [[CustomView alloc]initWithFrame:CGRectMake(0, 0, , )];
    [ addSubview:customView];

Write text

Copy the codeThe code is as follows:

- (void)drawRect:(CGRect)rect
{
//Get the current drawing board
    CGContextRef ctx = UIGraphicsGetCurrentContext();
//color
    CGContextSetRGBStrokeColor(ctx, 0.2, 0.2, 0.2, 1.0);
//The width of the line
    CGContextSetLineWidth(ctx, 0.25);
//Start writing
[@"I am text" drawInRect:CGRectMake(10, 10, 100, 30) withFont:font];
    [super drawRect:rect];
}

This code can write four big words beautifully: I am text. It's easy to understand, and every sentence has comments.

Draw a straight line

Copy the codeThe code is as follows:

- (void)drawRect:(CGRect)rect
{
//Get the current drawing board
    CGContextRef ctx = UIGraphicsGetCurrentContext();
//color
    CGContextSetRGBStrokeColor(ctx, 0.2, 0.2, 0.2, 1.0);
//The width of the line
    CGContextSetLineWidth(ctx, 0.25);
//Top horizontal line
    CGContextMoveToPoint(ctx, 0, 10);
    CGContextAddLineToPoint(ctx, , 10);
    CGContextStrokePath(ctx);
    [super drawRect:rect];
}

Draw arc lines

Copy the codeThe code is as follows:

CGContextSetRGBStrokeColor(context, 0, 0, 1, 1);//Change the brush color
    
CGContextMoveToPoint(context, 140, 80);//Start coordinate p1
    
    //CGContextAddArcToPoint(CGContextRef c, CGFloat x1, CGFloat y1,CGFloat x2, CGFloat y2, CGFloat radius)
// x1, y1 and p1 form a line coordinate p2, x2, y2 end coordinates form a line p3, radius of p3, radius, note that the length of the radius needs to be calculated,
    CGContextAddArcToPoint(context, 148, 68, 156, 80, 10);
    
CGContextStrokePath(context);//Painting path
  

Draw a circle

Copy the codeThe code is as follows:

- (void)drawRect:(CGRect)rect
{
//Get the current drawing board
    CGContextRef ctx = UIGraphicsGetCurrentContext();
//color
    CGContextSetRGBStrokeColor(ctx, 0.2, 0.2, 0.2, 1.0);
//The width of the line
    CGContextSetLineWidth(ctx, 0.25);
//void CGContextAddArc(CGContextRef c,CGFloat x, CGFloat y,CGFloat radius,CGFloat startAngle,CGFloat endAngle, int clockwise)1 radian = 180°/π (≈57.3°) Degree = radian × 180°/π 360°=360×π/180 = 2π radian
// x,y is the dot coordinates, radius radius, startAngle is the starting radian, endAngle is the end radian, clockwise 0 is clockwise, and 1 is counterclockwise.
CGContextAddArc(ctx, 100, 20, 20, 0, 2*M_PI, 0); //Add a circle
CGContextDrawPath(ctx, kCGPathStroke); //Draw path
    [super drawRect:rect];
}

Do you still remember this formula for drawing circles? Do you still know what M_PI is? Is it equal to how much? Hurry up and make up for it!


Draw a large circle and fill in the color

Copy the codeThe code is as follows:

UIColor *aColor = [UIColor colorWithRed:1 green:0.0 blue:0 alpha:1];
    
CGContextSetFillColorWithColor(context, );//Fill color
    
CGContextSetLineWidth(context, 3.0);//The width of the line
    
CGContextAddArc(context, 250, 40, 40, 0, 2 * M_PI, 0); //Add a circle
//kCGPathFill fills non-zero-winding rules, kCGPathEOFill means using parity rules, kCGPathStroke path, kCGPathFillStroke path, kCGPathEOFillStroke means tracing lines, not filling
    
CGContextDrawPath(context, kCGPathFillStroke); //Draw path and fill

Draw a rectangle

Copy the codeThe code is as follows:

- (void)drawRect:(CGRect)rect
{
//Get the current drawing board
    CGContextRef ctx = UIGraphicsGetCurrentContext();
//color
    CGContextSetRGBStrokeColor(ctx, 0.2, 0.2, 0.2, 1.0);
//The width of the line
    CGContextSetLineWidth(ctx, 0.25);
    CGContextAddRect(ctx, CGRectMake(2, 2, 30, 30));
    CGContextStrokePath(ctx);
    [super drawRect:rect];
}

Draw a fan shape

Copy the codeThe code is as follows:

//Draw a fan shape, that is, draw a circle, just set the angle to form a fan shape
    aColor = [UIColor colorWithRed:0 green:1 blue:1 alpha:1];
CGContextSetFillColorWithColor(context, );//Fill color
//Draw a specified angle fan around the center of the circle with 10 as the radius
    CGContextMoveToPoint(context, 160, 180);
    CGContextAddArc(context, 160, 180, 30,  -60 * PI / 180, -120 * PI / 180, 1);
    CGContextClosePath(context);
CGContextDrawPath(context, kCGPathFillStroke); //Draw path
 

   
Draw Bezier curve
Copy the codeThe code is as follows:

//Quadratic curve
CGContextMoveToPoint(context, 120, 300);//Set the starting point of Path
CGContextAddQuadCurveToPoint(context,190, 310, 120, 390);//Set the control point coordinates and end point coordinates of the Bezier curve
    CGContextStrokePath(context);
//Cubic curve function
CGContextMoveToPoint(context, 200, 300);//Set the starting point of Path
CGContextAddCurveToPoint(context,250, 280, 250, 400, 280, 300);//Set the control point coordinates and control point coordinates of the Bezier curve
    CGContextStrokePath(context);