iOSアプリにおける、円グラフの描画方法。 UIViewサブクラスを用いて、drawRectメソッド内にて描画。下記イメージ。前提として、UIViewサブクラスをPieChartsViewとして作成。四つの項目を持った円グラフを描画する。 PieChartsView.h #import <UIKit/UIKit.h> @interface PieChartsView : UIView { } - (id)initWithFrame:(CGRect)frame; @end PieChartsView.m #import "PieChartsView.h" static inline float radians(double degrees) { return degrees * M_PI / 180.0; } @implementation PieChartsView - (id)init