UILabel com texto de duas cores diferentes

109

Quero exibir uma string como esta em UILabel:

Aí estão 5 resultados.

Onde o número 5 é vermelho e o resto da corda é preto.

Como posso fazer isso no código?

Peter
fonte
6
@EmptyStack Certamente não é o caso, pois o iOS 4 suporta NSAttributedString. Veja minha resposta abaixo.
Mic Pringle

Respostas:

223

A maneira de fazer isso é usar NSAttributedStringassim:

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

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

Criei uma UILabel extensão para fazer isso .

João costa
fonte
Posso adicionar alvos nele. Thnaks
UserDev
Acabei de adicionar sua extensão ao meu projeto! THX!
Zeb
Boa categoria para UILabel. Muito obrigado. Esta deve ser a resposta aceita.
Pradeep Reddy Kypa,
63

Eu fiz isso criando um categoryparaNSMutableAttributedString

-(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];
    }
}

Use como

- (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)
        }
    }
}

USO

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 Obrigado por notificar

// 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!)
    }
}

Já fiz mais experimentos com atributos e abaixo estão os resultados, aqui está o SOURCECODE

Aqui está o resultado

Estilos

anoop4real
fonte
2
Você precisa criar uma nova categoria para NSMutableAttributedString com o método ... de qualquer forma, adicionei este exemplo ao github, você pode pegar e verificar github.com/anoop4real/NSMutableAttributedString-Color
anoop4real
Mas eu preciso definir a cor de todo o alfabeto com incasensitive em uma string ... como todo "e" na cor vermelha de toda a string
Ravi Ojha
Sem @interface visível para 'NSMutableAttributedString' declara o seletor 'setColorForText: withColor:'
ekashking 01 de
1
Recebi o erro 'Uso de identificador não resolvido' NSForegroundColorAttributeName 'por Swift4.1, mas substituo' NSForegroundColorAttributeName 'por' NSAttributedStringKey.foregroundColor 'e estou construindo corretamente.
kj13
1
@ kj13 Obrigado por notificar, atualizei a resposta e adicionei mais alguns estilos
anoop4real
25

Aqui está

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;
Hardik Mamtora
fonte
20

Swift 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)

Resultado

insira a descrição da imagem aqui


Swift 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)
        }
    }

Resultado:

insira a descrição da imagem aqui

Krunal
fonte
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;
raju dontiboina
fonte
6

Desde o iOS 6 , o UIKit suporta o desenho de strings atribuídas, portanto, nenhuma extensão ou substituição é necessária.

De UILabel:

@property(nonatomic, copy) NSAttributedString *attributedText;

Você só precisa construir o seu NSAttributedString. Existem basicamente duas maneiras:

  1. Anexe pedaços de texto com os mesmos atributos - para cada parte, crie uma NSAttributedStringinstância e anexe-as a umaNSMutableAttributedString

  2. Crie um texto atribuído a partir de uma string simples e, em seguida, adicione os atribuídos para determinados intervalos - encontre o intervalo do seu número (ou qualquer outro) e aplique um atributo de cor diferente nele.

Tricertops
fonte
6

Anups respondem rapidamente. Pode ser reutilizado em qualquer classe.

Em arquivo rápido

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);
        }

    }
}

Em algum controlador de visualização

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;
Deepak Thakur
fonte
4

Ter um UIWebView ou mais de um UILabel pode ser considerado um exagero para essa situação.

Minha sugestão seria usar TTTAttributedLabel, que é um substituto direto para UILabel que oferece suporte a NSAttributedString . Isso significa que você pode facilmente aplicar estilos diferentes a intervalos diferentes em uma string.

Mic Pringle
fonte
3

NSAttributedStringé o caminho a percorrer. A pergunta a seguir tem uma ótima resposta que mostra como fazer isso. Como você usa NSAttributedString

Werner
fonte
3

JTAttributedLabel (por mystcolor ) permite que você use o suporte de string atribuído em UILabel no iOS 6 e ao mesmo tempo sua classe JTAttributedLabel no iOS 5 por meio de seu JTAutoLabel.

Johan Kool
fonte
2

Existe uma solução 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

    }
}

E há um exemplo de chamada:

let colorString = " (string in red)"
self.mLabel.text = "classic color" + colorString
self.mLabel.setSubTextColor(pSubString: colorString, pColor: UIColor.red)
Kevin ABRIOUX
fonte
Olá, como faço isso se quiser adicionar duas colorStrings diferentes? Tentei usar o seu exemplo e apenas adicionar outro, mas ainda assim só dá cor a um deles.
Erik Auranaune
Tente isto: let colorString = "(string em vermelho)" let colorStringGreen = "(string em verde)" self.mLabel.text = "cor clássica" + colorString + colorStringGreen self.mLabel.setSubTextColor (pSubString: colorString, pColor: UIColor .red) self.mLabel.setSubTextColor (pSubString: colorStringGreen, pColor: UIColor.green)
Kevin ABRIOUX
Isso é estranho, mas não muda os dois: s24.postimg.org/ds0rpyyut/… .
Erik Auranaune
Um problema é que, se as duas strings forem iguais, apenas uma delas será colorida, veja aqui: pastebin.com/FJZJTpp3 . Você tem uma solução para isso também?
Erik Auranaune
2

Swift 4 e superior: Inspirado na solução anoop4real , aqui está uma extensão String que pode ser usada para gerar texto com 2 cores diferentes.

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
    }
}

O exemplo a seguir altera a cor do asterisco para vermelho, mantendo a cor do rótulo original para o texto restante.

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

Minha resposta também tem a opção de colorir toda a ocorrência de um texto, não apenas uma ocorrência dele: "wa ba wa ba dubdub", você pode colorir toda a ocorrência de wa não apenas a primeira ocorrência como a resposta aceita.

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))
            }
        }
    }
}

Agora você pode fazer isso:

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
Compilador Alsh
fonte
E como posso usar?
pableiros
1
Atualizei minha resposta, tenha um bom dia :)
Compilador Alsh
1

Para usuários do Xamarin , tenho um método C # estático em que passo uma matriz de strings, uma matriz de UIColours e uma matriz de UIFonts (eles precisarão ter comprimento igual). A string atribuída é então passada de volta.

Vejo:

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;

    }
Craig Champion
fonte
1

No meu caso, estou usando o Xcode 10.1. Existe uma opção de alternar entre texto simples e texto atribuído no texto do rótulo no Interface Builder

insira a descrição da imagem aqui

Espero que isso possa ajudar alguém ..!

BharathRao
fonte
2
Parece que o XCode 11.0 quebrou o editor de texto atribuído. Então, tentei usar o TextEdit para criar o texto e colei-o no Xcode e funcionou surpreendentemente bem.
Brainware
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

    }
}
Dipak Panchasara
fonte
0

Minha própria solução foi criada um método como o seguinte:

-(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; }

Funcionou com apenas uma cor diferente no mesmo texto, mas você pode adaptá-lo facilmente a mais cores na mesma frase.

Shontauro
fonte
0

Usando o código abaixo, você pode definir várias cores com base na palavra.

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];
}
Hari c
fonte
0

SwiftRichStringfunciona perfeito! Você pode usar +para concatenar duas strings atribuídas

fujianjin6471
fonte