4

次のコードは、文字列 @"ten to the power of two = 10[2]" を受け取り、赤色を数字の 2 に設定します。

Q: この (ファンシーな) エフェクトが欲しいです :

ここに画像の説明を入力

(行番号のわずかに上の小さなものを表す一般的な効果を探していることに注意してください-文字列の直後で、必ずしも「...の力まで」ではありませんが、上記の画像のように見えるはずです):

-(void)textAttribute
{
        NSString *myString = @"ten to the power of two = 10[2]";
        NSRange start = [myString rangeOfString:@"["];
        NSRange end = [myString rangeOfString:@"]"];
        if (start.location != NSNotFound && end.location != NSNotFound && end.location > start.location) {
            //NSString *betweenBraces = [myString substringWithRange:NSMakeRange(start.location+1, end.location-(start.location+1))];
            NSRange myRange = NSMakeRange(start.location+1, end.location-(start.location+1));
            NSMutableAttributedString *s =
            [[NSMutableAttributedString alloc] initWithString:myString];

            UIColor *powerColor = [UIColor redColor];
            [s addAttribute:NSForegroundColorAttributeName value:powerColor range:myRange];

            triggerLabel.text = [NSString stringWithFormat:@"Trigger words:%@",powerColor];
            triggerLabel.attributedText = s;


        }

    }
4

1 に答える 1