mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
Swift
35 lines
1.5 KiB
Swift
import UIKit
|
|
|
|
public final class SearchBar : UISearchBar {
|
|
|
|
public override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
setUpSessionStyle()
|
|
}
|
|
|
|
public required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
setUpSessionStyle()
|
|
}
|
|
}
|
|
|
|
public extension UISearchBar {
|
|
|
|
func setUpSessionStyle() {
|
|
searchBarStyle = .minimal // Hide the border around the search bar
|
|
barStyle = .black // Use Apple's black design as a base
|
|
tintColor = Colors.text // The cursor color
|
|
let searchImage = #imageLiteral(resourceName: "searchbar_search").withTint(Colors.searchBarPlaceholder)!
|
|
setImage(searchImage, for: .search, state: .normal)
|
|
let clearImage = #imageLiteral(resourceName: "searchbar_clear").withTint(Colors.searchBarPlaceholder)!
|
|
setImage(clearImage, for: .clear, state: .normal)
|
|
let searchTextField: UITextField = self.searchTextField
|
|
searchTextField.backgroundColor = Colors.searchBarBackground // The search bar background color
|
|
searchTextField.textColor = Colors.text
|
|
searchTextField.attributedPlaceholder = NSAttributedString(string: NSLocalizedString("Search", comment: ""), attributes: [ .foregroundColor : Colors.searchBarPlaceholder ])
|
|
setPositionAdjustment(UIOffset(horizontal: 4, vertical: 0), for: UISearchBar.Icon.search)
|
|
searchTextPositionAdjustment = UIOffset(horizontal: 2, vertical: 0)
|
|
setPositionAdjustment(UIOffset(horizontal: -4, vertical: 0), for: UISearchBar.Icon.clear)
|
|
}
|
|
}
|