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