可以对UITextView中的文本应用发光效果吗?如果是这样,怎么样?
答案 0 :(得分:1)
以下是一些向UITextView添加红光的代码。需要iOS 6+。根据口味调整参数:
NSShadow *shadow = [NSShadow new];
shadow.shadowBlurRadius = 5;
shadow.shadowColor = [UIColor redColor];
shadow.shadowOffset = CGSizeMake(0, 0);
NSDictionary *attributes = @{NSShadowAttributeName:shadow};
textView.attributedText = [[NSAttributedString alloc]
initWithString:title
attributes:attributes];
答案 1 :(得分:0)
不是真的。您可以在text-shadow
中使用CSS样式(使用<textarea>
属性)UIWebView
。