• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iOS 7 弹出框覆盖进度条和 uibarbuttonItem 色调颜色

[复制链接]
菜鸟教程小白 发表于 2022-12-13 06:00:49 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我的导航栏有问题。 UIBarButtonItem tintColor 是橙色的,但是当我呈现 popover 时,barButtonItem tintColor 变为 lightGray。导航栏色调颜色为白色。我需要在弹出框出现后留下橙色。 有人能帮我吗?谢谢!

编辑 1

我制作了可选择的 barButtonItem,并且我有 UIBarButtonItem 的子类:

-(void)setSelectedBOOL)selected {
    _selected = selected;
    if (selected) {
        self.tintColor = self.selectedColor;
    } else {
        self.tintColor = self.defaultColor;
    }
}

-(id)initWithImageUIImage *)image styleUIBarButtonItemStyle)style targetid)target actionSEL)action defaultColorUIColor *)defaultColor {
    self = [super initWithImage:image style:style target:target action:action];
    if (self) {
        self.tintColor = defaultColor;
    }
    return self;
}

-(id)initWithTitleNSString *)title styleUIBarButtonItemStyle)style targetid)target actionSEL)action defaultColor:(UIColor *)defaultColor {
    self = [super initWithTitle:title style:style target:target action:action];
    if (self) {
        self.tintColor = defaultColor;
    }
    return self;
}

编辑 2

感谢 Warren Burton 的回答,解决方案是:

self.navigationController.navigationBar.tintAdjustmentMode = UIViewTintAdjustmentModeNormal;



Best Answer-推荐答案


此行为是 iOS 7 "Normal"。它告诉您的用户该按钮当前不是您的事件 UI 的一部分。

如果你想绕过这个常规约定,你可以继承 UIBarButtonItem 并覆盖

- (void)tintColorDidChange

只留下一个空的实现。

- (void)tintColorDidChange {
   //nothing to see here, move along
}

当弹出框呈现时,呈现 View 进入 tintMode UIViewTintAdjustmentModeDimmed 因此即使您提供另一种颜色,该颜色也会被系统变灰(不饱和?)。

这就是为什么你需要覆盖 tintColorDidChange 来阻止这种情况发生。

来自文档...

When this property’s value is UIViewTintAdjustmentModeDimmed, the value of the tintColor property is modified to provide a dimmed appearance.

关于iOS 7 弹出框覆盖进度条和 uibarbuttonItem 色调颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21280651/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap