简体   繁体   中英

drawing line in button event handler in objective c IOS 5

i tried to draw line in objective c using this function

-(IBAction) DrawLine
{
    CGContextRef c = UIGraphicsGetCurrentContext();

        CGFloat red[4] = {1.0f, 0.0f, 0.0f, 1.0f};
        CGContextSetStrokeColor(c, red);
        CGContextBeginPath(c);
        CGContextMoveToPoint(c, 5.0f, 5.0f);
        CGContextAddLineToPoint(c, 50.0f, 50.0f);
        CGContextStrokePath(c);
}

but i found that c is null or nil why ? and what is the solution ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM