有谁知道如何复制字体在 iOS 7 的 Notes 应用程序中的微妙嵌入外观?
我使用了阴影偏移和阴影颜色,但似乎无法让它看起来那么漂亮和微妙。
尝试这个
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;