我正在为新的iOS应用程序使用Classy(www.classy.as),并且试图找出如何仅使用样式表将阴影添加到UILabel的方法。该文档似乎没有提到这一点。我知道如何使用CALayer技术手动添加阴影,并且我知道有子类标签可以执行此操作,但是我想要一个纯粹的Classy解决方案,因为我们希望将所有样式保留在样式表中以便于切换。

这是我的标签:

UILabel.small
font $font-light 17
text-color: $text-color-light

最佳答案

我认为您正在寻找与以下内容类似的内容:

UILabel.small
  font $font-light 17
  text-color: $text-color-light
  layer @
    shadow-color   black
    shadow-offset  9,3
    shadow-opacity 0.6
    shadow-radius  4


查看涵盖大多数主题的文档,http://classy.as/properties/

09-04 00:37