-1

色とフォントを変更するためにテキストが必要な TextView があります。本文以外の方法でも構いません。助けてください。

4

1 に答える 1

3

色とフォントを変更するにはテキストが必要です。

あなたは確かにNSAttributedStringを探しています


ソースから

NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Hello. That is a test attributed string."];
[str addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(3,5)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(10,7)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:20.0] range:NSMakeRange(20, 10)];
label.attributedText = str;
于 2013-02-26T14:51:25.053 に答える