タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

iphoneとQuartzに関するpaellaのブックマーク (1)

  • iPhoneプログラミングメモ

    Quartによる2Dグラフィックスの描画を行うプログラムを作成する。 フレームワークの準備 QuartzCoreフレームワークを追加。 画像の準備 pic0.png pig1.png ソースコードの記述 GraphicsQCEx.h #import <UIKit/UIKit.h> #import "GraphicsQC.h" //GraphicsQCExの宣言 @interface GraphicsQCEx : UIView { GraphicsQC* _g; //グラフィックス UIImage* _image0;//イメージ0 UIImage* _image1;//イメージ1 } @end #import "GraphicsQCEx.h" //GraphicsQCExの実装 @implementation GraphicsQCEx //フレームの初期化 - (id)init

    paella
    paella 2010/02/02
    Quartzによる2Dグラフィックス描画(線や矩形、画像、テキスト)のサンプル。UIViewのサブクラスを作ってdrawInRectをオーバーライド。
  • 1