Removing the image on the left of an UISearchbar

前端 未结 17 1604
攒了一身酷
攒了一身酷 2020-12-29 20:44

Can I remove the image on the left of an UISearchbar and add a new image?

17条回答
  •  孤城傲影
    2020-12-29 21:01

    Or in Swift 4.0 the simple one-liner:

    UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).leftViewMode = .never
    

    NOTE: This will remove the left hand icon from ALL UITextFields that are contained inside UISearchBars.

提交回复
热议问题