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

添加 subview 后iOS UIButton文本颜色不会改变

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

我有这个函数,一旦点击按钮就会被调用。

我正在尝试向单击的按钮添加 View ,向未单击的按钮添加 View 。

这是我的 View 的初始化:

/**
 Create the bottom border views
 */
- (void) createBottomBorderViews {
    UIButton* button = _albumsTypesButtons[0];
    //create layers
    _clickedButtonBorder = [[UIView alloc] initWithFrame:CGRectMake(0, 26, button.frame.size.width, 2)];
    _unClickedButtonBorder = [[UIView alloc] initWithFrame:CGRectMake(0, 27, button.frame.size.width, 1)];

    //set the clicked layer
    _clickedButtonBorder.backgroundColor = [UIColor colorWithRed:86/255.0 green:88/255.0 blue:87/255.0 alpha:1.0];

    //set the unclicked layer
    _unClickedButtonBorder.backgroundColor = [UIColor colorWithRed:86/255.0 green:88/255.0 blue:87/255.0 alpha:1.0];
}

这是根据按钮的状态添加 View 并更改文本颜色

-(void) setButtonsVisualsUIButton*)clickedButton {
    [_clickedButtonBorder removeFromSuperview];
    [_unClickedButtonBorder removeFromSuperview];
    for (UIButton* button in _albumsTypesButtons)
    {
        if (button == clickedButton)
        {
            button.titleLabel.textColor = [UIColor colorWithRed:225/255.0 green:112/255.0 blue:119/255.0 alpha:1.0];
            [button addSubview:_clickedButtonBorder];
        }
        else
        {
            button.titleLabel.textColor = [UIColor colorWithRed:199/255.0 green:200/255.0 blue:196/255.0 alpha:1.0];
            [button addSubview:_unClickedButtonBorder];
        }
    }
}

我的问题:

将 View 作为 subview 添加到按钮时,它不会改变 文字颜色...

我认为可能是层或类似的东西,但它真的不知道



Best Answer-推荐答案


解决方案实际上是使用 [button setTitleColor] 而不是触摸它的属性。

关于添加 subview 后iOS UIButton文本颜色不会改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25732962/

回复

使用道具 举报

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

本版积分规则

关注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