gpt4 book ai didi

objective-c - UISlider 与 ProgressView 相结合

转载 作者:IT老高 更新时间:2023-10-28 11:49:12 24 4
gpt4 key购买 nike

有没有一种苹果自制的方法来获取带有 ProgressView 的 UISlider。这被许多流媒体应用程序使用,例如 native quicktimeplayer 或 youtube。(只是为了确定:我只对可视化感兴趣)

Slider  with loader

干杯西蒙

最佳答案

这是您所描述内容的简单版本。

alt text

从某种意义上说,这是“简单”的,因为我没有费心尝试添加阴影和其他细微之处。但它很容易构建,如果你愿意,你可以调整它以更微妙的方式绘制。例如,您可以制作自己的图像并将其用作 slider 的拇指。

这实际上是一个位于绘制温度计的 UIView 子类 (MyTherm) 之上的 UISlider 子类,以及绘制数字的两个 UILabel。

UISlider 子类消除了内置轨道,因此它后面的温度计可以显示出来。但是 UISlider 的拇指(旋钮)仍然可以以正常方式拖动,并且可以将其设置为自定义图像,在用户拖动时获取 Value Changed 事件,等等。下面是消除自身轨迹的 UISlider 子类的代码:

- (CGRect)trackRectForBounds:(CGRect)bounds {
CGRect result = [super trackRectForBounds:bounds];
result.size.height = 0;
return result;
}

温度计是自定义 UIView 子类 MyTherm 的一个实例。我在 Nib 中实例化它并取消选中它的不透明并给它一个透明颜色的背景颜色。它有一个 value 属性,所以它知道温度计要装多少。这是它的 drawRect: 代码:

- (void)drawRect:(CGRect)rect {
CGContextRef c = UIGraphicsGetCurrentContext();
[[UIColor whiteColor] set];
CGFloat ins = 2.0;
CGRect r = CGRectInset(self.bounds, ins, ins);
CGFloat radius = r.size.height / 2.0;
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, CGRectGetMaxX(r) - radius, ins);
CGPathAddArc(path, NULL, radius+ins, radius+ins, radius, -M_PI/2.0, M_PI/2.0, true);
CGPathAddArc(path, NULL, CGRectGetMaxX(r) - radius, radius+ins, radius, M_PI/2.0, -M_PI/2.0, true);
CGPathCloseSubpath(path);
CGContextAddPath(c, path);
CGContextSetLineWidth(c, 2);
CGContextStrokePath(c);
CGContextAddPath(c, path);
CGContextClip(c);
CGContextFillRect(c, CGRectMake(r.origin.x, r.origin.y, r.size.width * self.value, r.size.height));
}

要更改温度计值,请将 MyTherm 实例的 value 更改为 0 到 1 之间的数字,并使用 setNeedsDisplay 告诉它重新绘制自身。

关于objective-c - UISlider 与 ProgressView 相结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4495433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com