UILabel の最初の文字のフォント サイズを他とは少し大きくしたいと思います。それを行う方法についてのガイダンスが必要です。ラベルにはたくさんの言葉があります。
これは私が試したことです:
NSArray * words = [Label.text componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSString *firstLetter = [[words objectAtIndex:0] substringToIndex:1];
しかし、NSString のサイズを大きくすることに行き詰まりました。より良い方法はありますか?提案とガイダンスを歓迎します..ありがとう..
編集:
[Label setFont:[UIFont fontWithName:@"Arial" size:12.f]];
NSArray * words = [Label.text componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
UIFont *fontFirst=[UIFont fontWithName:@"Arial" size:15.f];
NSDictionary *attrsDictFirst=[NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName];
NSAttributedString *finalString=[[NSAttributedString alloc] initWithString:[[words objectAtIndex:0] substringToIndex:1] attributes:attrsDictFirst];