- (void)drawRect:(CGRect)rect
{
// Drawing codeCGContextRef context = UIGraphicsGetCurrentContext(); // コンテキストを取得
// 線を黒色にする
CGContextSetStrokeColorWithColor(context,UIColor.blackColor.CGColor);
// 線の太さを指定
CGContextSetLineWidth(context, 10.0); // 10ptに設定
CGContextMoveToPoint(context, 50, 100); // 始点
CGContextAddLineToPoint(context, 100, 200);
CGContextAddLineToPoint(context, 200, 200);
CGContextAddLineToPoint(context, 300, 200); // 終点
CGContextStrokePath(context); // 描画
}
//refresh
[self setNeedsDisplay];
ref
댓글
댓글 쓰기