そのため、MonoTouch でナビゲーション バーの背景画像を設定しようとしています。イメージはどこでも同じです。どうすればいいですか?
ビューでロードしました:NavBar.SetBackgroundImage(UIImage.FromFile ("btn-title-bar.png"));
動作しません。
そのため、MonoTouch でナビゲーション バーの背景画像を設定しようとしています。イメージはどこでも同じです。どうすればいいですか?
ビューでロードしました:NavBar.SetBackgroundImage(UIImage.FromFile ("btn-title-bar.png"));
動作しません。
試す
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"btn-title-bar.png"] forBarMetrics:UIBarMetricsDefault];
C#の土地では:
UINavigationBar.Appearance.SetBackgroundImage (UIImage.FromFile ("btn-title-bar.png"), UIBarMetrics.Default);
すべてのページに異なる画像を配置する場合は、このメソッドをビューに記述し、すべてのページにロードしました..
UIImage *image = [UIImage imageNamed: @"logo.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage: image];
self.navigationItem.titleView = imageView;
すべてのページに単一の画像が必要な場合は、このコードをdelegate.mに記述します。
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"logo.png"]
forBarMetrics:UIBarMetricsDefault];