如何在 iPhone 上创建渐变按钮?

发布于 2024-08-31 10:33:59 字数 294 浏览 9 评论 0原文

如何使用 3.0 SDK 在 iPhone 上创建一个类似于下面屏幕截图中的按钮?这是一个从 iTunes 遥控器连接到主机 iTunes 资料库时显示的按钮。

这是编写自定义控件的情况还是这是库存样式?

iTunes 远程按钮 http://grab.by/grabs/3bbb59936d86da2c95c7afa4c9c78677.png

How can I create a button that looks like the one found in the screenshot below on an iPhone with the 3.0 SDK? It's a button that shows when connecting to a host iTunes library from the iTunes remote.

Is it a case of writing a custom control or is this a stock style?

iTunes Remote Button http://grab.by/grabs/3bbb59936d86da2c95c7afa4c9c78677.png

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

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

发布评论

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

评论(2

盛装女皇 2024-09-07 10:33:59

您可以 (1) 子类化 UIButton 并在 drawRect 中自己绘制渐变,或者 (2) 使用库存 UIButton 和具有所需外观的图像,或者 (3) 使用库存 UIButton 但添加包含渐变的 CALayer。

圆角、颜色和边框都可以使用普通的 UIButton 实现。

You can either (1) subclass UIButton and draw the gradient yourself in drawRect, or (2) use stock UIButton with images that have the look you want, or (3) use stock UIButton but add a CALayer that contains a gradient.

The rounded corners, colors and border are all possible with the stock UIButton.

素罗衫 2024-09-07 10:33:59

恐怕您必须为默认、突出显示、禁用状态创建图像,并使用所有这些图像创建自定义按钮。

I'm afraid you have to create images for default, highlighted, disabled states and create a custom button with all these images.

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