Pixate Freestyle -动态设置UINavigationBar的样式



这可能是与Pixate Freestyle相同的问题:clear styleClass属性不重置样式。但我不知道。

我已经设计了一个UINavigationBar和标题以及左右按钮。我的视图是一个表格视图。当我选择一个单元格时,当我在堆栈上推送一个新视图时,我重新设计了导航栏的样式。

当我弹出视图时,我希望旧的样式生效。但是,按钮不会被重新设计。

CSS:

navigation-bar {
    opacity: 1;
    color: black;
    background-color: white;
}
navigation-bar title {
    color: black;
}
navigation-bar button-appearance {
    color: black;
}

navigation-bar.he {
    background-color: darkgreen;
    color: white;
}
navigation-bar.he button-appearance {
    color: white;
}
navigation-bar.he title {
    color: white;
}

推送一个新的视图控制器工作:

-(void)viewDidLoad {
    self.navigationController.navigationBar.styleClass = [self.dict objectForKey:CLASS]; // Imagine this is he
}

弹出视图控制器并返回父视图控制器:

-(void)viewWillAppear:(BOOL)animated
{
    // This updates the bar and title but not the buttons
    self.navigationController.navigationBar.styleClass = @"";
    [self.navigationController.navigationBar updateStyles];
    [self.navigationController.navigationItem updateStyles];
    [self.navigationItem.rightBarButtonItem updateStyles];
    /* Hack ...
    if(self.navigationItem.rightBarButtonItem!=nil)
        self.navigationItem.rightBarButtonItem.tintColor = [UIColor blackColor];
    if(self.navigationItem.leftBarButtonItem!=nil)
        self.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
    */
}

我在这里找到了答案:样式化UINavigationBar第2部分

我正在使用Freestyle网站上的文档,并试图使用button-appearance。

正确的样式现在是右栏按钮和左栏按钮。

navigation-bar {
    opacity: 1;
    color: black;
    background-color: white;
}
navigation-bar title {
    color: black;
}
navigation-bar right-bar-button, navigation-bar left-bar-button  {
    color: black;
}
navigation-bar.he {
    background-color: darkgreen;
    color: black;
}
navigation-bar.he title {
    color: black;
}
navigation-bar.he right-bar-button, navigation-bar.he left-bar-button  {
    color: black;

相关内容

  • 没有找到相关文章