/* 半円をかく */ - (void)drawRect:(CGRect)rect { //現在のコンテクストを取得 CGContextRef context = UIGraphicsGetCurrentContext(); //透明レイヤー開始 CGContextBeginTransparencyLayer(context, nil); //パスの描画を開始 CGContextBeginPath(context); //開始角度 float startAngle = -(90 * M_PI/180); //円グラフの角度 float endAngle = startAngle + (M_PI * 2.0) * 0.5; //円弧を描画する CGContextMoveToPoint(context, 100, 100); CGContextAddArc(context, 100, 100,