UISearchBAR scopeBar tintColor

后端 未结 8 2042
小蘑菇
小蘑菇 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:31

    The above approaches weren't working for me and I ended up using an iOS appearance method.

    [[UISegmentedControl appearanceWhenContainedIn:[UISearchBar class], nil] setTintColor:[UIColor whiteColor]];
    

提交回复
热议问题