swift 之NSAttributeString

//创建属性字符串

 let str:NSMutableAttributedString=NSMutableAttributedString.init(string: "tab底部")

   //添加多个属性     

str.addAttributes([NSAttributedStringKey.foregroundColor:UIColor.red], range:NSMakeRange(02))

   //添加单个属性     

str.addAttribute(NSAttributedStringKey.font, value: UIFont.systemFont(ofSize: 12), range: NSMakeRange(02))

       

footlbl.attributedText=str


===============

你可能感兴趣的:(iOS,/swift)