UISlider 可以变小吗?

发布于 2024-10-31 11:09:06 字数 195 浏览 5 评论 0原文

恐怕我在这里遗漏了一些明显的东西,但我在任何地方都找不到答案,我似乎也无法自己弄清楚,所以我会在这里问。

是否有可能使 UISlider 比默认的稍小一些,就像 iPhone 上“iPod”应用程序中看到的那样? Interface Builder 上的高度似乎被冻结在 23 点。

它是如何在 iPod 应用程序上完成的?它使用自定义图像吗?

I'm afraid I'm missing something obvious here, but I can't find an answer anywhere nor I can seem to figure it out on my own, so I'll ask here.

Is it possible to make an UISlider slightly smaller than the default one, just like the one seen in the "iPod" app on the iPhone? The height on Interface Builder seems to be frozen at 23 points.

How is it done on the iPod app? Does it use custom images?

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

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

发布评论

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

评论(1

余生共白头 2024-11-07 11:09:06

我对如何实现这个目标有了一个想法。但我自己却无法尝试。所以我不知道滑块是否有效。

使用每个 UIView 子类的转换属性:

yourslider.transform = CGAffineTransformMakeScale(0.5, 0.5);

但正如我所说,如果您对其应用转换,我不知道滑块是否还能工作。

I had an idea on how to achieve this goal. But I couldn't try it myself. So I don't know if the slider works.

Use the transformation property of every UIView subclass:

yourslider.transform = CGAffineTransformMakeScale(0.5, 0.5);

But as I said, I don't know if the slider works anymore if you apply a transformation to it.

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