首页 文章

iPhone:可以改变UINavigationBar提示的颜色吗?

提问于
浏览
2

我想知道我是否可以改变UINavigationBar提示的背景颜色(例如红色,而导航栏的其余部分保持黑色),所以我可以使用UINavigationItem的prompt属性来显示状态/错误消息作为单线 .

2 回答

  • 2

    不 . 但您可以将提示设置为空字符串,并在其上放置一个红色标签 .

  • 4

    这是一个老问题,但自从引入 appearance 以来,设置提示颜色(和其他属性)比添加子视图更容易 .

    didFinishLaunchingWithOptions

    [[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor theColorYouWantYourPromptToBe], UITextAttributeTextColor, otherVariables, nil]];
    

相关问题