ナビゲーションバーに画像を追加したい。それは私のアプリ全体にあるはずです。すべてのナビゲーション コントローラーに追加する必要があります。
どんな助けでも大歓迎です。
ナビゲーションバーに画像を追加したい。それは私のアプリ全体にあるはずです。すべてのナビゲーション コントローラーに追加する必要があります。
どんな助けでも大歓迎です。
これを試して 、
UINavigationBar *navBar = self.navigationController.navigationBar;
UIImage *image = [UIImage imageNamed:@"image.png"];
[navBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
次のコードで画像を追加できます..
UIImage *image = [UIImage imageNamed: @"yourImageName.png"];
UIImageView *imgView = [[UIImageView alloc] initWithImage: image];
self.navigationItem.titleView = imgView;
あなたはこのコードを使用します:
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"Image.png"] forBarMetrics:UIBarMetricsDefault];
if ([[UINavigationBar class] respondsToSelector:@selector(appearance)])
{
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:imageName ofType:@"png"]] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0],
UITextAttributeTextColor,
[UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8],
UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 0)],
UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"HelveticaNeue-Bold" size:18.0],
UITextAttributeFont,
nil]];
}
これを Appdelegate.m に入れます
私は理想的です。私はこのような問題を抱えているので、あなたは私のやり方を試すことができます.OK!!
最初に、ナビゲーションコントローラーを作成し、それをウィンドウに表示します
UINavigationController *nav=[[UINavigationController alloc] initWithRootViewController:YourView];
次のステップ:ナビゲーションバーを追加したい画像で画像プロパティを持つオブジェクトUiimageviewを作成し、フレームptopertyは必要な位置です
UIImageView *imgView=[UIImageView alloc] initWithImage:[UIImage imageNamed:@"YourImagename"];
imgView.Frame=CGrectmake();
最後のステップ: オブジェクト imgView をナビゲーションバーにサブビューとして追加します
[nav.navigationBar addSubview:imgView];
終わり!!!!!!!!!!