Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASTextNode's attributedText don't support range? #2065

Open
jimmy54 opened this issue Aug 15, 2022 · 0 comments
Open

ASTextNode's attributedText don't support range? #2065

jimmy54 opened this issue Aug 15, 2022 · 0 comments

Comments

@jimmy54
Copy link

jimmy54 commented Aug 15, 2022

like:
NSMutableAttributedString

  • (void)addAttribute:(NSAttributedStringKey)name value:(id)value range:(NSRange)range;
  • (void)addAttributes:(NSDictionary<NSAttributedStringKey, id> *)attrs range:(NSRange)range;

code:

`
-(void)loadTextButton
{

NSString *text = _model.comment == nil ? _model.text : [NSString stringWithFormat:@"%@ %@", _model.text, _model.comment];
//text
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:text];
NSRange textRange = NSMakeRange(0, _model.text.length);
NSDictionary *attributeText = @{NSFontAttributeName: _styleModel.candidateFont, NSForegroundColorAttributeName: _styleModel.currentColorSchema.candidate_text_color};
[attributedString addAttributes:attributeText range:textRange];

//comment
if (_model.comment){
    NSRange commentRang = NSMakeRange(textRange.length + 1, _model.comment.length);
    NSDictionary *attributeComment = @{NSFontAttributeName: _styleModel.commentFont,NSForegroundColorAttributeName: _styleModel.currentColorSchema.comment_text_color};
    [attributedString addAttributes:attributeComment range:commentRang];
}
[_textButton setAttributedTitle:attributedString forState:UIControlStateNormal];

}
`

bug1

version:3.1.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant