简体   繁体   English

导航栏显示空白

[英]Navigation bar shows white space

Its a strange behaviour observed on the navigation bar a white spaced added. 在导航栏上观察到的奇怪现象是添加了白色空格。 How to removed it whitespace from the navigation bar. 如何从导航栏中删除空格。

-(void)viewDidLoad {
    [super viewDidLoad]
    [self loadUI];
}

-(void)loadUI {

    /// set attributes for Navigation Bar
    [[self navigationController] setNavigationBarHidden:NO animated:NO];

    self.navigationItem.title = @"Welcome"; // Title of Navigation Bar
    self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:(243/255.0) green:(178/255.0) blue:(128/255.0) alpha:1];
    self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
    self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
    self.navigationController.navigationBar.translucent = NO;
}

在此处输入图片说明

从情节提要Navigation Controller的导航项中删除了阴影图像中的Image和后退Image。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM