组合图像来制作 UIButton?

发布于 2024-10-24 06:19:46 字数 279 浏览 5 评论 0原文

如果我有一个 png,它基本上是一个按钮图像,里面什么也没有:

----------------
|              |
----------------

我如何在其上放置图像,使图像成为按钮的一部分,例如:(

----------------
|    (image)   |
----------------

我可以在顶部放置一个 UIImageView,但这会不继承按钮属性,例如按下时变暗)

If I have one png which is basically a button image with nothing inside of it:

----------------
|              |
----------------

How do I lay an image onto that, to make the image part of the button, like:

----------------
|    (image)   |
----------------

(I could just lay a UIImageView on top, but that would not inherit button properties, like going dark when pressed)

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

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

发布评论

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

评论(1

忱杏 2024-10-31 06:19:46

使用基本上是按钮的图像作为 UIButton 的背景图像,并使用其他图像作为 UIButton 的图像。

[button setImage:[UIImage imageNamed:@"Foo"] forState:UIControlStateNormal];
[button setBackgroundImage:[UIImage imageNamed:@"Bar"] forState:UIControlStateNormal];

use the image that is basically a button as the backgroundImage of the UIButton, and use the other image as the image of the UIButton.

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