UISearchBar+JChat.swift 645 B

123456789101112131415161718192021222324
  1. //
  2. // UISearchBar+JChat.swift
  3. // JChat
  4. //
  5. // Created by 邓永豪 on 2017/10/13.
  6. // Copyright © 2017年 HXHG. All rights reserved.
  7. //
  8. import UIKit
  9. extension UISearchBar {
  10. static var `default`: UISearchBar {
  11. let searchBar = UISearchBar()
  12. searchBar.placeholder = "搜索"
  13. searchBar.barStyle = .default
  14. searchBar.backgroundColor = .white
  15. searchBar.barTintColor = .white
  16. searchBar.autocapitalizationType = .none
  17. searchBar.layer.borderColor = UIColor.white.cgColor
  18. searchBar.layer.borderWidth = 1
  19. searchBar.layer.masksToBounds = true
  20. return searchBar
  21. }
  22. }