let string = "點擊注冊按鈕,即表示您已同意隱私條款和服務協議"
let ranStr = "同意"
let attrstring:NSMutableAttributedString = NSMutableAttributedString(string:string)
let str = NSString(string: string)
let theRange = str.range(of: ranStr)
attrstring.addAttribute(NSForegroundColorAttributeName, value: UIColor.red, range: theRange)
attrstring.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 14), range: theRange)
label.attributedText = attrstring