iOS 7中Notes应用程序的字体效果

时间:2013-10-22 22:50:03

标签: ios iphone ipad ios7

有没有人知道如何复制iOS 7中Notes应用程序中字体所具有的微妙嵌入式外观?

我使用了阴影偏移和阴影颜色,但似乎无法让它看起来那么漂亮和微妙。

1 个答案:

答案 0 :(得分:1)

试试这个

UIFont* font = [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline];

UIColor* textColor = [UIColor blueColor];

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

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

myTextLabel.attributedText = attrString;

Letter press style ref