Bài đăng

Mảng Array

let text = "😄😄😄Long paragraph saying!" let nsText = text as NSString let textRange = NSMakeRange ( 0 , nsText . length ) let attributedString = NSMutableAttributedString ( string : text ) nsText . enumerateSubstringsInRange ( textRange , options : . ByWords , usingBlock : { ( substring , substringRange , _, _) in if ( substring == "saying" ) { attributedString . addAttribute ( NSForegroundColorAttributeName , value : NSColor . redColor (), range : substringRange ) } }) print ( attributedString )

Mảng button

let text = "😄😄😄Long paragraph saying!" let nsText = text as NSString let textRange = NSMakeRange ( 0 , nsText . length ) let attributedString = NSMutableAttributedString ( string : text ) nsText . enumerateSubstringsInRange ( textRange , options : . ByWords , usingBlock : { ( substring , substringRange , _, _) in if ( substring == "saying" ) { attributedString . addAttribute ( NSForegroundColorAttributeName , value : NSColor . redColor (), range : substringRange ) } }) print ( attributedString )