组合图像来制作 UIButton?
如果我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用基本上是按钮的图像作为 UIButton 的背景图像,并使用其他图像作为 UIButton 的图像。
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.