Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些UILabel元素可以动态改变文本。我还使用label.Layer.ShadowOffset和 dito 颜色为标签添加阴影。
UILabel
label.Layer.ShadowOffset
当标签的文本发生更改时,我使用SizeToFit. 问题:该方法没有考虑阴影 - 这会导致标签太小并且阴影被切掉。
SizeToFit
有没有一种简单的方法可以解决这个问题,还是我必须在SizeToFit通话后手动更改大小?
为什么要在图层上设置阴影,而不是使用 UILabel 的 shadowOffset 和 shadowColor 属性?在这种情况下,我希望 sizeToFit 能够解释阴影。