UIButton 上的边框使用渐变而不是纯色
我看过有关如何使用 CAGradientLayer 制作具有渐变背景的按钮的教程。如何使用渐变作为“边框颜色”?
I've seen tutorials on how to use a CAGradientLayer to make a button with a gradient background. How would one go about using a gradient for the 'border color'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能可以对按钮进行子类化并在
-drawRect:
中绘制自定义边框。You could probably subclass the button and draw a custom border in
-drawRect:
.