TaskBarButtonItem.swift 867 B

1234567891011121314151617181920212223
  1. //
  2. // TaskBarButtonItem.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 2016/10/12.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class TaskBarButtonItem: UIBarButtonItem {
  10. override func awakeFromNib() {
  11. self.tintColor = base_color
  12. self.setTitleTextAttributes( [NSAttributedString.Key.font: UIFont(name: "PingFangSC-Regular", size: 17.0)!,NSAttributedString.Key.foregroundColor: base_color], for: .normal)
  13. self.setTitleTextAttributes([NSAttributedString.Key.font: UIFont(name: "PingFangSC-Regular", size: 17.0)!,NSAttributedString.Key.foregroundColor: base_color], for: .selected)
  14. self.setTitleTextAttributes( [NSAttributedString.Key.font: UIFont(name: "PingFangSC-Regular", size: 17.0)!,NSAttributedString.Key.foregroundColor: base_color], for: .disabled)
  15. }
  16. }