如何在 UILabel 上制作倒影?
我试图在我的应用程序中的 UILabel 上获得“嵌入”效果。
这就是我的意思:
我希望它看起来像字体“嵌入”或压入背景。请注意,此字体是动态的,UILabel 将以编程方式更改。
关于如何做到这一点,或者关于什么字体看起来像这样,有什么想法吗?
提前致谢!
--------------------------------------------------------- -------------------------------------------------- -------------
编辑:感谢fbrunel,我知道了如何做到这一点。不过还是看看结果吧。
它看起来确实不太好,有什么想法吗?
I'm trying to get an "embed" effect on my UILabel in my app.
Here's what I mean:
I want it to look like the font is "embedded" or pressed into the background. Please note this font is dynamic, the UILabel will be changed programmatically.
Any ideas as to how this can be done, or as to what font looks like this?
Thanks in advance!
--------------------------------------------------------------------------------------------------------------
Edit: Thanks to fbrunel, I figured out how to do it. Check out the result, though.
It really doesn't look very nice, any ideas why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过在文本上使用“倒置”阴影来完成的。在 UILabel 上,您有两个属性可以执行此操作:shadowColor 和shadowOffset(阴影的方向)。
会成功的。
It's done using an "inverted" shadow on the text. On UILabel you have two properties to do this: shadowColor and shadowOffset (the direction of the shadow).
Will do the trick.