RSS

iPhone: インディケータを背景画像付きで表示する

インディケータを背景付きで表示するオブジェクトを作ってるので,それをメモとして公開.


コレ↑


自作のIndicatorView.m/h(後述を参照)をプロジェクトに追加して,初期設定をする.例えば,背景画像をbackground.pngとして,100x100のサイズで現viewの中心座標に表示する

IndicatorView *indicatorView = [[IndicatorView alloc] init];
[indicatorView setImage:[UIImage imageNamed:@"background.png"]];
[indicatorView setFrame:CGRectMake(0.0, 0.0, 100.0, 100.0)];
[indicatorView setCenter:self.view.center];

そして,表示
[indicatorView showAt:self.view];

消す
[indicatorView remove];

それだけ.ライセンスは「自己責任と使った分だけ隣人にジュースを奢る」です.IndicatorView.m/hは,ここからDLできます.

Bookmark and Share

0 コメント: