簡單的說,就是獲取 UISearchBar 中的 UITextField,修改 UITextField 就變的簡單很多嗽冒。
if let textfield = searchbar.subviews.first?.subviews.last as? UITextField {
textfield.attributedPlaceholder = NSAttributedString(string: "搜索", attributes: [NSForegroundColorAttributeName:UIColor.white])
textfield.textColor = UIColor.white
}