2016-09-23 9 views
0

Es ist ein seltsames Verhalten beobachtet auf der Navigationsleiste ein weißer Abstand hinzugefügt. Wie Sie es aus der Navigationsleiste entfernen.Navigationsleiste zeigt Leerraum

-(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; 
} 

enter image description here

Antwort

0

das Bild aus dem Schattenbild und Rückseite Bild von dem Navigations Artikel von Storyboard-Navigation Controller entfernt.

Verwandte Themen