Change UISearchBar cancel button text in iOS 8

后端 未结 13 1742
感动是毒
感动是毒 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:44

    Swift 3.0:

    In your AppDelegate add this:

    UIBarButtonItem.appearance(whenContainedInInstancesOf: [UISearchBar.self]).title = "my text"
    

提交回复
热议问题