如何让UISlider变粗?

发布于 2024-12-15 22:37:56 字数 79 浏览 2 评论 0原文

我想创建一个非常厚的水平方向UISlider。我知道让它更长很容易,但是如何使轨道(以及可以注册触摸事件的区域)更厚?

I want to create a really thick horizontally oriented UISlider. I know it is easy to make it longer, but how do I make the track (and therefore the area in which touch events can be registered) thicker?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恍梦境° 2024-12-22 22:37:56

对 UISlider 进行子类化,然后进行此修改:(

- (CGRect)trackRectForBounds:(CGRect)bounds
{
    return bounds;
}

我刚刚在 UICatalog——这是一组非常好的 Apple 示例代码——而且效果非常好)。

Subclass the UISlider and then make this modification:

- (CGRect)trackRectForBounds:(CGRect)bounds
{
    return bounds;
}

(I just tried this out in UICatalog -- which is a very nice set of Apple sample code -- and it works perfectly great).

莫多说 2024-12-22 22:37:56

Swift 相当于 Michael 的 答案

import UIKit

class ThickSlider: UISlider {

    override func trackRect(forBounds bounds: CGRect) -> CGRect {
        return bounds
    }

}

Swift equivalent of Michael's answer:

import UIKit

class ThickSlider: UISlider {

    override func trackRect(forBounds bounds: CGRect) -> CGRect {
        return bounds
    }

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文