- ( void )drawRect:( CGRect )rect { // Drawing code CGContextRef 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 http://d.hatena.ne.jp/kazukingband/20120713/1342176398