Change UISearchBar cancel button text in iOS 8

后端 未结 13 1771
感动是毒
感动是毒 2020-12-13 01:48

I\'d like to change the text from "Cancel" to "Done" of the Cancel button inside the UISearchBar in iOS 8. I am using UISearchControll

13条回答
  •  南笙
    南笙 (楼主)
    2020-12-13 02:37

     for view in (UISearchBar.subviews[0]).subviews{
                 if let button = view as? UIButton{
                 button.setTitleColor(UIColor.whiteColor(), forState: .Normal)
                 button.setTitle("Cancel", forState:.Normal)
                }
         }
    

    self.subviews[0]).subviews contain UISearchBarBackground,UISearchBarTextField,UINavigationButto‌​n in which UINavigationButton is subclass of UIButton.Check for View as UIButton and if yes then change property of UIButton.

提交回复
热议问题