0

有谁知道如何复制字体在 iOS 7 的 Notes 应用程序中的微妙嵌入外观?

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

4

1 回答 1

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;

字母印刷风格参考

于 2013-10-22T22:54:41.523 回答