UISearchBAR scopeBar tintColor

后端 未结 8 1979
小蘑菇
小蘑菇 2021-02-02 15:46

Has anyone managed to color the scopebar portion of a UISearchBar, it has a tintColor property but setting it does not affect the attached scopebar UISegmentedControl. Ive got a

8条回答
  •  心在旅途
    2021-02-02 16:29

    Simply do the following to change the tint color of ScopeBar:

    The below code is in C# (Xamarin)

    SearchController.SearchBar.TintColor = UIColor.Green;
    

提交回复
热议问题