NavigationBarに描画されていない部分を設定した後で、ナビゲーションバーのViewControllerに画像を設定しようとしています。 なぜ起こったのか理解できません。UINavigationBarセットイメージが完全に描画されていません
画像サイズは90、高さと幅750
は、任意の上の私は何をする必要があるかを知らせることができますか?
[self.navigationController setToolbarHidden:YES animated:NO];
self.title = NSLocalizedString(@"Dashboar", @"Dashboard");
self.navigationController.navigationBar.barTintColor = [UIColor whiteColor];
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
UIImage *currentImage = [[UIImage imageNamed:@"bg.png"]
resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0) resizingMode:UIImageResizingModeStretch];
[self.navigationController.navigationBar setBackgroundImage:currentImage forBarMetrics:UIBarMetricsDefault];
ナビゲーションバーの半透明のプロパティを変更すると何か変更されますか? –
@TejaNandamuriありがとうございます、私はそれが仕事を無効にします。 – KkMIW