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

ios - 根据 UILabel 中的数字动态更改 UIView 宽度

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

我有一个显示为条形的 UIView,其宽度应根据 UILabel 上显示的 NSNumber 值更改。 p>

下图显示了 UI enter image description here

例如: 如图所示,所有 3 个橙色条都有不同的值。我需要栏的宽度也应该根据值不同。值为 14 和 10 的条的宽度应小于值为 18 的条。

以下是我写的代码,但它不起作用。

//Get the value as string
        NSString *countString = cell.numberOfTuneIn.text;
        //MAximum size of the bar
        CGSize maxSize = CGSizeMake(cell.numberOfTuneIn.bounds.size.width, CGFLOAT_MAX);

        CGRect s = [countString boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes{NSFontAttributeName:cell.numberOfTuneIn.font} context:nil];

        //set the frame of the bar
        CGRect  rect = cell.barView.frame;
        rect.size.width = s.size.width;
        cell.barView.frame = rect;

有人可以帮忙吗: 如何根据值更改栏的宽度?



Best Answer-推荐答案


这是你应该遵循的基本逻辑:

  • 获取柱数范围(例如 0-100)
  • 获取宽度像素范围(例如 0-320)
  • 为每 1 个您创建比例(例如 320/100)或 3.2 个像素的宽度 增加...

所以根据上面的例子:

  • 如果条形为 100,则其宽度为 100 * 3.2 = 320 像素宽度
  • 如果条形为 50,则其宽度为 50 * 3.2 = 160 像素宽度

希望对您有所帮助。

- (CGFloat)getViewlWidthfloat)labelValue {

    // Setup view bar settings, you can take those settings outside of this method if needed
    int maxLabelValue = 100;
    int viewMaxWidth = 320; // You can make it dynamic according to screen width
    float widthPixelRatio = viewMaxWidth / maxLabelValue;

    // Calculate width 
    CGFloat pixelsResult = labelValue * widthPixelRatio;

    // Return value
    return pixelsResult;
}

// Lets assume that here you get the label value from the server and you called it labelValue
NSString * labelValue = // Value from server

/*
Create UILabel here, showing the value from server
*/

// Get the width of the UIView to be
CGFloat myViewWidth = [self getViewlWidth:[labelValue floatValue]];

/*
Create the UIView here and set its witdh to the result of the CGFloat above (myViewWidth)
*/

关于ios - 根据 UILabel 中的数字动态更改 UIView 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34187600/

回复

使用道具 举报

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

本版积分规则

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