3

在 WWDC 2013 视频中,他们展示了开发人员可以在文本上使用凸版效果。有没有人有任何关于如何执行此操作/如何使用 UILabel 执行此操作的示例代码?

4

2 回答 2

17

他们现在让它变得非常简单。

//Use any font you want or skip defining it
UIFont* font = [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline];

//Use any color you want or skip defining it
UIColor* textColor = [UIColor blueColor];

NSDictionary *attrs = @{ NSForegroundColorAttributeName : textColor,
                                NSFontAttributeName : font,
                          NSTextEffectAttributeName : NSTextEffectLetterpressStyle};

NSAttributedString* attrString = [[NSAttributedString alloc]
                                   initWithString:note.title
                                       attributes:attrs];

myTextLabel.attributedText = attrString;
于 2013-10-06T21:36:47.023 回答
0

它是NSAttributedString UIKitAdditions的一部分

于 2013-09-20T16:01:52.843 回答