自己紹介

自分の写真
最近、iphoneアプリをリリースしました。
UxU
無料アプリですので、是非遊んで下さい。 第二弾アプリ:工場夜景写真集 今後も色々なアプリをリリースしていく予定です。
次は、コスプレ or 漫画 or 騎乗日記

2011年2月16日水曜日

カスタムUINavigationBar

UINavigationBarに画像などを組み込みする方法

//色を変更(アプリに合う色合いにする)
[[self.navigationController navigationBar] setTintColor:[UIColor colorWithRed:0.4 green:0.1 blue:0.1 alpha:1]];

//背景画像(横320px)を変更
UINavigationBar *naviBar = [self.navigationController navigationBar];
UIImage *img = [[UIImage imageNamed:@"navigation.png"] stretchableImageWithLeftCapWidth:0 topCapHeight:1];
UIImageView *imgView = [[[UIImageView alloc]initWithImage:img]retain];

imgView.frame = naviBar.bounds;
imgView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
imgView.layer.zPosition = -FLT_MAX;
[naviBar insertSubview:imgView atIndex:0];
[imgView release];

0 件のコメント:

コメントを投稿