web-dev-qa-db-fra.com

Comment mettre en gras des mots dans UITextView à l'aide de NSMutableAttributedString?

J'ai une UITextView et il y a certains mots que je prononce avec NSString stringWithFormat et que j'aimerais être en gras.

J'ai regardé autour de Stack Overflow et essayé de suivre les messages mais je suppose que je ne le comprends pas. 

Voici ce avec quoi j'ai joué:

    NSRange boldedRange = NSMakeRange(0, 4);
    NSString *boldFontName = [[UIFont fontWithName:@"Helvetica-Bold" size:100]fontName];


    NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:self.name];

    [attrString beginEditing];
    [attrString addAttribute:NSFontAttributeName
                       value:boldFontName
                       range:boldedRange];
    [attrString endEditing];

    self.resultsTextView.attributedText = attrString;


    self.resultsTextView.text = [NSString stringWithFormat:@"One day, %@ was taking a walk and saw a %@ boy.  He was %@ a %@.", attrString, self.adjective, self.adverb, self.noun];
12
May Yang

Vous pouvez également le définir de la manière suivante si vous le souhaitez en définissant un dictionnaire dans son ensemble, comme attribut.

NSString *strTextView = @"This is some demo Text to set BOLD";

NSRange rangeBold = [strTextView rangeOfString:@"BOLD"];

UIFont *fontText = [UIFont boldSystemFontOfSize:10];
NSDictionary *dictBoldText = [NSDictionary dictionaryWithObjectsAndKeys:fontText, NSFontAttributeName, nil];

NSMutableAttributedString *mutAttrTextViewString = [[NSMutableAttributedString alloc] initWithString:strTextView];
[mutAttrTextViewString setAttributes:dictBoldText range:rangeBold];

[textViewTermsPolicy setAttributedText:mutAttrTextViewString];
21
channi

Utilisez le code ci-dessous pour définir une chaîne d'attribut dans TextView.

    NSString *infoString =@"I am Kirit Modi from Deesa.";

    NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:infoString];

    UIFont *font_regular=[UIFont fontWithName:@"Helvetica" size:20.0f];
    UIFont *font_bold=[UIFont fontWithName:@"Helvetica-Bold" size:20.0f];

    [attString addAttribute:NSFontAttributeName value:font_regular range:NSMakeRange(0, 4)];

    [attString addAttribute:NSFontAttributeName value:font_bold range:NSMakeRange(5, 15)];

    [attString addAttribute:NSFontAttributeName value:font_regular range:NSMakeRange(16, infoString.length - 15 - 1)];

    [self.txtView setAttributedText:attString];

OutPut: 

enter image description here

6
Kirit Modi

Découvrez l'amélioration de @CrazyYoghurt sur @Bbrame et @BenoitJadinon sur cette question SO précédente 3586871 Je l'utilise depuis plus d'un an et cela fonctionne très bien. Une limitation: je ne pense pas que vous puissiez mettre en gras plusieurs fois la même chaîne si elle apparaît plusieurs fois dans votre chaîne d'origine. Mais vous pouvez probablement utiliser le code pour le faire si vous le souhaitez.

0
Litome

Si vous avez également besoin de filtrer un mot de UITextView et de le souligner/changer de couleur uniquement pour ce texte, vous pouvez utiliser le code ci-dessous.

Ici, je récupère tout le texte de la doc dans la chaîne Content et filtre un texte particulier en langue hébraïque.

NSMutableAttributedString *aStr = [[NSMutableAttributedString alloc]initWithString:content attributes:nil];
[aStr addAttribute:NSLinkAttributeName value:@"http://www.Apple.com" range:[content rangeOfString:@"מדיניות פרטיות"]];
[aStr addAttribute:NSLinkAttributeName value:@"http://www.google.com" range:[content rangeOfString:@"לינק"]];
textview.linkTextAttributes = @{NSUnderlineStyleAttributeName : @(NSUnderlineStyleSingle)};
textview.delegate = (id)self;

//...Vous pouvez selon votre couleur personnalisée

[aStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:[content rangeOfString:@"מדיניות פרטיות"]];
[aStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:[content rangeOfString:@"לינק"]];

// Ici, vous pouvez également ajouter le geste de tapoter sur ce texte . // appuyer sur le geste

UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tappedTextView:)];
             [textview addGestureRecognizer:tapRecognizer];
             [textview setAttributedText:aStr];
             textview.textAlignment=NSTextAlignmentRight;

// Pour obtenir l'emplacement du texte dans le geste de tapoter

-(void)tappedTextView:(UITapGestureRecognizer *)tapGesture

{
    UITextView *textView = (UITextView *)tapGesture.view;
    CGPoint tapLocation = [tapGesture locationInView:textView];
    UITextPosition *textPosition = [textView closestPositionToPoint:tapLocation];
    NSDictionary *attributes = [textView textStylingAtPosition:textPosition inDirection:UITextStorageDirectionForward];
    NSString *urlStr = attributes[NSLinkAttributeName];
    if (urlStr)

    {
        //[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",url]]];

        PrivacyViewController *next = [PrivacyViewController new];
        [self.navigationController pushViewController:next animated:YES];
    }
}
0
Yash