| 123456789101112131415161718192021222324 |
- //
- // UISearchBar+JChat.swift
- // JChat
- //
- // Created by 邓永豪 on 2017/10/13.
- // Copyright © 2017年 HXHG. All rights reserved.
- //
- import UIKit
- extension UISearchBar {
- static var `default`: UISearchBar {
- let searchBar = UISearchBar()
- searchBar.placeholder = "搜索"
- searchBar.barStyle = .default
- searchBar.backgroundColor = .white
- searchBar.barTintColor = .white
- searchBar.autocapitalizationType = .none
- searchBar.layer.borderColor = UIColor.white.cgColor
- searchBar.layer.borderWidth = 1
- searchBar.layer.masksToBounds = true
- return searchBar
- }
- }
|