将阴影添加到KMPlaceholderTextView文本

时间:2019-03-17 12:42:28

标签: swift uitextview

我正在尝试添加textShadow。我正在使用ZDStickerView并向其中添加KMPlaceHolder视图。

我需要在文本上添加阴影:如何将textShadow添加到KMPlaceholderTextView

if let text = selected_sticker!.contentView as? KMPlaceholderTextView {
    text.placeholderLabel.layer.shadowColor = UIColor.red.cgColor
    text.placeholderLabel.layer.shadowOffset = CGSize(width: 4, height: 4)
    text.placeholderLabel.layer.shadowRadius = 4.0
    text.placeholderLabel.layer.opacity = 1.0
}

here is the stickerview design

0 个答案:

没有答案