2つの異なる色のテキストを持つUILabel


109

このような文字列をに表示したいUILabel

5件の結果があります。

5という数字は赤で、残りの弦は黒です。

コードでこれを行うにはどうすればよいですか?


6
@EmptyStack iOS 4はNSAttributedStringをサポートしているため、これは確かに当てはまりませ。以下の私の答えを参照してください。
マイクプリングル

回答:


223

それを行う方法は次のように使用することですNSAttributedString

NSMutableAttributedString *text = 
 [[NSMutableAttributedString alloc] 
   initWithAttributedString: label.attributedText];

[text addAttribute:NSForegroundColorAttributeName 
             value:[UIColor redColor] 
             range:NSMakeRange(10, 1)];
[label setAttributedText: text];

UILabel それを行うための拡張機能を作成しました。


ターゲットを追加できますか?Thnaks
UserDev、

プロジェクトに拡張機能を追加しました!どうも!
Zeb

UILabelの素敵なカテゴリ。どうもありがとう。これは受け入れられる答えになるはずです。
Pradeep Reddy Kypa

63

私はcategoryforを作成してこれを行いましたNSMutableAttributedString

-(void)setColorForText:(NSString*) textToFind withColor:(UIColor*) color
{
    NSRange range = [self.mutableString rangeOfString:textToFind options:NSCaseInsensitiveSearch];

    if (range.location != NSNotFound) {
        [self addAttribute:NSForegroundColorAttributeName value:color range:range];
    }
}

好きに使う

- (void) setColoredLabel
{
    NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"Here is a red blue and green text"];
    [string setColorForText:@"red" withColor:[UIColor redColor]];
    [string setColorForText:@"blue" withColor:[UIColor blueColor]];
    [string setColorForText:@"green" withColor:[UIColor greenColor]];
    mylabel.attributedText = string;
}

SWIFT 3

extension NSMutableAttributedString{
    func setColorForText(_ textToFind: String, with color: UIColor) {
        let range = self.mutableString.range(of: textToFind, options: .caseInsensitive)
        if range.location != NSNotFound {
            addAttribute(NSForegroundColorAttributeName, value: color, range: range)
        }
    }
}

使用法

func setColoredLabel() {
    let string = NSMutableAttributedString(string: "Here is a red blue and green text")
    string.setColorForText("red", with: #colorLiteral(red: 0.9254902005, green: 0.2352941185, blue: 0.1019607857, alpha: 1))
    string.setColorForText("blue", with: #colorLiteral(red: 0.2392156869, green: 0.6745098233, blue: 0.9686274529, alpha: 1))
    string.setColorForText("green", with: #colorLiteral(red: 0.3411764801, green: 0.6235294342, blue: 0.1686274558, alpha: 1))
    mylabel.attributedText = string
}

SWIFT 4 @ kj13通知ありがとう

// If no text is send, then the style will be applied to full text
func setColorForText(_ textToFind: String?, with color: UIColor) {

    let range:NSRange?
    if let text = textToFind{
        range = self.mutableString.range(of: text, options: .caseInsensitive)
    }else{
        range = NSMakeRange(0, self.length)
    }
    if range!.location != NSNotFound {
        addAttribute(NSAttributedStringKey.foregroundColor, value: color, range: range!)
    }
}

私は属性でより多くの実験を行いました、そして以下は結果です、 これSOURCECODEです

これが結果です

スタイル


2
メソッドを使用してNSMutableAttributedStringの新しいカテゴリを作成する必要があります...とにかくこのサンプルをgithubに追加しました。それを取得して確認できますgithub.com/anoop4real/NSMutableAttributedString-Color
anoop4real

しかし、私は、文字列全体の赤い色ですべての「e」のように....文字列のincasesensitiveですべてのアルファベットの色を設定する必要があります
ラヴィOjha

「NSMutableAttributedString」の表示されない@インターフェイスは、セレクタ「setColorForText:withColor:」を宣言します
ekashking

1
Swift4.1で「未解決の識別子「NSForegroundColorAttributeName」の使用」というエラーが発生しましたが、「NSForegroundColorAttributeName」を「NSAttributedStringKey.foregroundColor」に置き換えて正しくビルドしています。
kj13 2018年

1
@ kj13通知してくれてありがとう、私は答えを更新し、いくつかのスタイルを追加しました
anoop4real 2018年

25

どうぞ

NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:lblTemp.text];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(5,6)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(11,5)];
lblTemp.attributedText = string;

20

スウィフト4

// An attributed string extension to achieve colors on text.
extension NSMutableAttributedString {

    func setColor(color: UIColor, forText stringValue: String) {
       let range: NSRange = self.mutableString.range(of: stringValue, options: .caseInsensitive)
       self.addAttribute(NSAttributedStringKey.foregroundColor, value: color, range: range)
    }

}

// Try it with label
let label = UILabel()
label.frame = CGRect(x: 70, y: 100, width: 260, height: 30)
let stringValue = "There are 5 results."
let attributedString: NSMutableAttributedString = NSMutableAttributedString(string: stringValue)
attributedString.setColor(color: UIColor.red, forText: "5")
label.font = UIFont.systemFont(ofSize: 26)
label.attributedText = attributedString
self.view.addSubview(label)

結果

ここに画像の説明を入力してください


スウィフト3

func setColoredLabel() {
        var string: NSMutableAttributedString = NSMutableAttributedString(string: "redgreenblue")
        string.setColor(color: UIColor.redColor(), forText: "red")
        string.setColor(color: UIColor.greenColor(), forText: "green")
        string.setColor(color: UIColor.blueColor(, forText: "blue")
        mylabel.attributedText = string
    }


func setColor(color: UIColor, forText stringValue: String) {
        var range: NSRange = self.mutableString.rangeOfString(stringValue, options: NSCaseInsensitiveSearch)
        if range != nil {
            self.addAttribute(NSForegroundColorAttributeName, value: color, range: range)
        }
    }

結果:

ここに画像の説明を入力してください


12
//NSString *myString = @"I have to replace text 'Dr Andrew Murphy, John Smith' ";
NSString *myString = @"Not a member?signin";

//Create mutable string from original one
NSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:myString];

//Fing range of the string you want to change colour
//If you need to change colour in more that one place just repeat it
NSRange range = [myString rangeOfString:@"signin"];
[attString addAttribute:NSForegroundColorAttributeName value:[UIColor colorWithRed:(63/255.0) green:(163/255.0) blue:(158/255.0) alpha:1.0] range:range];

//Add it to the label - notice its not text property but it's attributeText
_label.attributedText = attString;

6

iOS 6以降、UIKitは属性付き文字列の描画をサポートしているため、拡張や置換は必要ありません。

からUILabel

@property(nonatomic, copy) NSAttributedString *attributedText;

あなただけを構築する必要がありますNSAttributedString。基本的に2つの方法があります。

  1. 同じ属性を持つテキストのチャンクをNSAttributedString追加します-各パーツに対して1つのインスタンスを作成し、それらを1つに追加しますNSMutableAttributedString

  2. プレーンな文字列から属性付きテキストを作成し、指定された範囲の属性を追加します-数値の範囲(または何でも)を見つけ、それに異なる色属性を適用します。


6

Anupsはすばやく答えます。どのクラスからでも再利用できます。

迅速なファイルで

extension NSMutableAttributedString {

    func setColorForStr(textToFind: String, color: UIColor) {

        let range = self.mutableString.rangeOfString(textToFind, options:NSStringCompareOptions.CaseInsensitiveSearch);
        if range.location != NSNotFound {
            self.addAttribute(NSForegroundColorAttributeName, value: color, range: range);
        }

    }
}

一部のView Controllerでは

let attributedString: NSMutableAttributedString = NSMutableAttributedString(string: self.labelShopInYourNetwork.text!);
attributedString.setColorForStr("YOUR NETWORK", color: UIColor(red: 0.039, green: 0.020, blue: 0.490, alpha: 1.0));
self.labelShopInYourNetwork.attributedText = attributedString;

4

UIWebViewまたは複数のUILabelを持つことは、この状況では過剰と見なすことができます。

私の提案は使用することですTTTAttributedLabelドロップイン置換UILabelのためのサポートであるNSAttributedStringを。つまり、さまざまなスタイルを文字列のさまざまな範囲に非常に簡単に適用できます。




3

JTAttributedLabel(by mystcolor)を使用すると、iOS 6のUILabelで属性付き文字列のサポートを使用できます。同時に、JTAutoLabelを介してiOS 5のJTAttributedLabelクラスを使用できます。


2

Swift 3.0ソリューションがあります

extension UILabel{


    func setSubTextColor(pSubString : String, pColor : UIColor){
        let attributedString: NSMutableAttributedString = NSMutableAttributedString(string: self.text!);
        let range = attributedString.mutableString.range(of: pSubString, options:NSString.CompareOptions.caseInsensitive)
        if range.location != NSNotFound {
            attributedString.addAttribute(NSForegroundColorAttributeName, value: pColor, range: range);
        }
        self.attributedText = attributedString

    }
}

そして、呼び出しの例があります:

let colorString = " (string in red)"
self.mLabel.text = "classic color" + colorString
self.mLabel.setSubTextColor(pSubString: colorString, pColor: UIColor.red)

こんにちは、2つの異なるcolorStringを追加する場合、どうすればよいですか?私は...あなたの例を使用してみましたし、ちょうど別のものを追加し、それはまだ色のみそれらの1
エリックAuranaune

これを試してください:let colorString = "(string in red)" let colorStringGreen = "(string in green)" self.mLabel.text = "classic color" + colorString + colorStringGreen self.mLabel.setSubTextColor(pSubString:colorString、pColor:UIColor .red)self.mLabel.setSubTextColor(pSubString:colorStringGreen、pColor:UIColor.green)
Kevin ABRIOUX 2017年

これは奇妙なことですが、それでもs24.postimg.org/ds0rpyyut/…の両方は変更されません。
Erik Auranaune、2017年

問題は、2つの文字列が同じである場合、そのうちの1つだけが着色されることです。ここを参照してください:pastebin.com/FJZJTpp3。あなたにもこれに対する修正がありますか?
Erik Auranaune

2

Swift 4以上:anoop4realのソリューションに触発された、2つの異なる色でテキストを生成するために使用できる文字列拡張があります。

extension String {

    func attributedStringForPartiallyColoredText(_ textToFind: String, with color: UIColor) -> NSMutableAttributedString {
        let mutableAttributedstring = NSMutableAttributedString(string: self)
        let range = mutableAttributedstring.mutableString.range(of: textToFind, options: .caseInsensitive)
        if range.location != NSNotFound {
            mutableAttributedstring.addAttribute(NSAttributedStringKey.foregroundColor, value: color, range: range)
        }
        return mutableAttributedstring
    }
}

次の例では、残りのテキストの元のラベルの色を維持しながら、アスタリスクの色を赤に変更します。

label.attributedText = "Enter username *".attributedStringForPartiallyColoredText("*", with: #colorLiteral(red: 1, green: 0, blue: 0, alpha: 1))

2

私の答えは、テキストの1つの出現だけでなく、すべての出現に色を付けるオプションもあります。

extension NSMutableAttributedString{
    func setColorForText(_ textToFind: String, with color: UIColor) {
        let range = self.mutableString.range(of: textToFind, options: .caseInsensitive)
        if range.location != NSNotFound {
            addAttribute(NSForegroundColorAttributeName, value: color, range: range)
        }
    }

    func setColorForAllOccuranceOfText(_ textToFind: String, with color: UIColor) {
        let inputLength = self.string.count
        let searchLength = textToFind.count
        var range = NSRange(location: 0, length: self.length)

        while (range.location != NSNotFound) {
            range = (self.string as NSString).range(of: textToFind, options: [], range: range)
            if (range.location != NSNotFound) {
                self.addAttribute(NSForegroundColorAttributeName, value: color, range: NSRange(location: range.location, length: searchLength))
                range = NSRange(location: range.location + range.length, length: inputLength - (range.location + range.length))
            }
        }
    }
}

これでこれを行うことができます:

let message = NSMutableAttributedString(string: "wa ba wa ba dubdub")
message.setColorForText(subtitle, with: UIColor.red) 
// or the below one if you want all the occurrence to be colored 
message.setColorForAllOccuranceOfText("wa", with: UIColor.red) 
// then you set this attributed string to your label :
lblMessage.attributedText = message

そして、どうすれば使用できますか?
pableiros

1
私の回答を更新し、良い一日を過ごします:)
Alshコンパイラ

1

ためXamarinのユーザIが静的有するC#の私は文字列の配列を渡す方法を、UIColoursとUIFontsのアレイのアレイは、(それらの長さに一致する必要があります)。その後、属性付き文字列が返されます。

見る:

public static NSMutableAttributedString GetFormattedText(string[] texts, UIColor[] colors, UIFont[] fonts)
    {

        NSMutableAttributedString attrString = new NSMutableAttributedString(string.Join("", texts));
        int position = 0;

        for (int i = 0; i < texts.Length; i++)
        {
            attrString.AddAttribute(new NSString("NSForegroundColorAttributeName"), colors[i], new NSRange(position, texts[i].Length));

            var fontAttribute = new UIStringAttributes
            {
                Font = fonts[i]
            };

            attrString.AddAttributes(fontAttribute, new NSRange(position, texts[i].Length));

            position += texts[i].Length;
        }

        return attrString;

    }

1

私の場合、Xcode 10.1を使用しています。インターフェースビルダーのラベルテキストでプレーンテキストと属性テキストを切り替えるオプションがあります

ここに画像の説明を入力してください

これが他の誰かを助けることを願っています。


2
XCode 11.0が属性付きテキストエディターを壊したようです。そこで、TextEditを使用してテキストを作成し、それをXcodeに貼り付けたところ、驚くほどうまくいきました。
ブレインウェア

0
extension UILabel{

    func setSubTextColor(pSubString : String, pColor : UIColor){


        let attributedString: NSMutableAttributedString = self.attributedText != nil ? NSMutableAttributedString(attributedString: self.attributedText!) : NSMutableAttributedString(string: self.text!);


        let range = attributedString.mutableString.range(of: pSubString, options:NSString.CompareOptions.caseInsensitive)
        if range.location != NSNotFound {
            attributedString.addAttribute(NSForegroundColorAttributeName, value: pColor, range: range);
        }
        self.attributedText = attributedString

    }
}

0

私自身のソリューションは次のような方法で作成されました:

-(void)setColorForText:(NSString*) textToFind originalText:(NSString *)originalString withColor:(UIColor*)color andLabel:(UILabel *)label{

NSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:originalString];
NSRange range = [originalString rangeOfString:textToFind];

[attString addAttribute:NSForegroundColorAttributeName value:color range:range];

label.attributedText = attString;

if (range.location != NSNotFound) {
    [attString addAttribute:NSForegroundColorAttributeName value:color range:range];
}
label.attributedText = attString; }

同じテキストで1つの異なる色だけで機能しましたが、同じ文のより多くの色に簡単に合わせることができます。


0

以下のコードを使用すると、単語に基づいて複数の色を設定できます。

NSMutableArray * array = [[NSMutableArray alloc] initWithObjects:@"1 ball",@"2 ball",@"3 ball",@"4 ball", nil];    
NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] init];
for (NSString * str in array)
 {
    NSMutableAttributedString * textstr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@ ,",str] attributes:@{NSForegroundColorAttributeName :[self getRandomColor]}];
     [attStr appendAttributedString:textstr];
  }
UILabel *lab = [[UILabel alloc] initWithFrame:CGRectMake(10, 300, 300, 30)];
lab.attributedText = attStr;
[self.view addSubview:lab];

-(UIColor *) getRandomColor
{
   CGFloat redcolor = arc4random() % 255 / 255.0;
   CGFloat greencolor = arc4random() % 255 / 255.0;
   CGFloat bluencolor = arc4random() % 255 / 255.0;
   return  [UIColor colorWithRed:redcolor green:greencolor blue:bluencolor alpha:1.0];
}

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.