我正在尝试添加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
}