UISearchBar 검색 텍스트 색상을 어떻게 변경할 수 있습니까?
의 텍스트 색상을 어떻게 변경할 수 UISearchBar
있습니까?
UITextField
UISearchBar 내부 에 액세스해야합니다 . 다음을 사용하여 수행 할 수 있습니다.valueForKey("searchField")
var textFieldInsideSearchBar = yourSearchbar.valueForKey("searchField") as? UITextField
textFieldInsideSearchBar?.textColor = yourcolor
Swift 3 업데이트
let textFieldInsideSearchBar = yourSearchbar.value(forKey: "searchField") as? UITextField
textFieldInsideSearchBar?.textColor = yourcolor
스토리 보드 (코드없이)에서 UISearchBar에 대한 텍스트 색상을 설정하려는 경우에도 쉽게 수행 할 수 있습니다 (ID 검사기에서). 다음은 검색 창의 빨간색 텍스트입니다.
나를 위해 Swift 4에서 작업 :
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).defaultTextAttributes = [NSAttributedStringKey.foregroundColor.rawValue: UIColor.white]
Swift 4.2, IOS 12 :
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).defaultTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.white]
어두운 배경에서만 읽을 수 있도록해야하는 경우 barStyle을 변경할 수 있습니다. 다음은 검색 창의 텍스트와 버튼을 흰색으로 만듭니다.
searchController.searchBar.barStyle = .black
public extension UISearchBar {
public func setTextColor(color: UIColor) {
let svs = subviews.flatMap { $0.subviews }
guard let tf = (svs.filter { $0 is UITextField }).first as? UITextField else { return }
tf.textColor = color
}
}
내가 생각하는 가장 편리한 방법 textColor
은 UISearchBar
.
스위프트 3.0
extension UISearchBar {
var textColor:UIColor? {
get {
if let textField = self.value(forKey: "searchField") as?
UITextField {
return textField.textColor
} else {
return nil
}
}
set (newValue) {
if let textField = self.value(forKey: "searchField") as?
UITextField {
textField.textColor = newValue
}
}
}
}
용법
searchBar.textColor = UIColor.blue // Your color
스위프트 2.3
extension UISearchBar {
var textColor:UIColor? {
get {
if let textField = self.valueForKey("searchField") as? UITextField {
return textField.textColor
} else {
return nil
}
}
set (newValue) {
if let textField = self.valueForKey("searchField") as? UITextField {
textField.textColor = newValue
}
}
}
}
다음과 같이 사용합니다.
searchBar.textColor = UIColor.blueColor() // Your color
이것은 iOS 11, Xcode 9에서 나를 위해 작동합니다.
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).textColor = UIColor.blue
나는 그것을 작성 AppDelegate
하지만 다른 곳에두면 작동한다고 생각합니다.
searchBar 내부의 UITextField에 액세스하여이를 수행 한 다음 배경색, 텍스트 색상 및 기타 모든 UITextField 속성을 변경할 수 있습니다.
textField에 액세스하려면 다음 확장을 추가하십시오.
extension UISearchBar {
/// Return text field inside a search bar
var textField: UITextField? {
let subViews = subviews.flatMap { $0.subviews }
guard let textField = (subViews.filter { $0 is UITextField }).first as? UITextField else { return nil
}
return textField
}
}
Xcode 11 및 iOS 13 이후로 텍스트 필드에 직접 액세스 할 수있게되었습니다.
searchBar.searchTextField
항상 이와 같이 액세스 할 수 있도록 코드를 작성할 수 있습니다.
extension UISearchBar {
public var textField: UITextField? {
if #available(iOS 13.0, *) {
return searchTextField
}
guard let firstSubview = subviews.first else {
assertionFailure("Could not find text field")
return nil
}
for view in firstSubview.subviews {
if let textView = view as? UITextField {
return textView
}
}
assertionFailure("Could not find text field")
return nil
}
}
치명적인 오류로 선택 사항이 아닌 것으로 만들 수도 있습니다.이 코드는 iOS 7부터 iOS 13GM까지 테스트되었습니다. 그러나 나는 옵션 버전으로 갈 것입니다.
extension UISearchBar {
public var textField: UITextField {
if #available(iOS 13.0, *) {
return searchTextField
}
guard let firstSubview = subviews.first else {
fatalError("Could not find text field")
}
for view in firstSubview.subviews {
if let textView = view as? UITextField {
return textView
}
}
fatalError("Could not find text field")
}
}
(이 솔루션은 Xcode 10 및 iOS 12에서만 테스트되었습니다.) 확장 프로그램을 추가하여 검색 창의 텍스트 필드에 액세스합니다.
extension UISearchBar {
var textField: UITextField? {
return subviews.first?.subviews.compactMap { $0 as? UITextField }.first
}
}
그런 다음 해당 속성을 사용하여 검색 창에있는 텍스트 필드의 텍스트 색상을 설정합니다.
let searchBar = UISearchBar()
searchBar.textField?.textColor = UIColor.white // or whichever color you want
내 상황에서 해결책은
id appearance = [UITextField appearanceWhenContainedInInstancesOfClasses:@[UISearchBar.class, BCRSidebarController.class]];
[appearance setTextColor:[UIColor.whiteColor colorWithAlphaComponent:0.56]];
다음은 "UITextField 찾기"접근 방식의 Xamarin.iOS C # 버전입니다. UITextField가 향후 iOS보기 계층에서 사라지더라도 충돌하지 않습니다.
var tf = searchBar.AllSubViews().FirstOrDefault(v => v is UITextField);
if (tf != null)
(tf as UITextField).TextColor = UIColor.White;
public static IEnumerable<UIView> AllSubViews(this UIView view)
{
foreach (var v in view.Subviews)
{
yield return v;
foreach (var sv in v.AllSubViews())
{
yield return sv;
}
}
}
Obj-C
UITextField *textField = [self.yourSearchbar valueForKey:@"_searchField"];
textField.textColor = [UIColor redColor];
스위프트 4.x
let textField = yourSearchbar.value(forKey: "searchField") as? UITextField
textField?.textColor = UIColor.red
참고 URL : https://stackoverflow.com/questions/28499701/how-can-i-change-the-uisearchbar-search-text-color
'code' 카테고리의 다른 글
Android 대화 상자의 중앙 메시지 (0) | 2020.11.09 |
---|---|
Cocoa-Touch : 두 개의 NSDates가 같은 날에 있는지 어떻게 알 수 있습니까? (0) | 2020.11.09 |
여러 필드가있는 Collections.sort (0) | 2020.11.09 |
Android Studio에서 줄 번호를 표시하는 방법 (0) | 2020.11.09 |
Xcode에서 "파생 된 데이터를 삭제"하는 방법은 무엇입니까? (0) | 2020.11.09 |