Custom UISegmentedControl like the Scope control in UISearchBar

后端 未结 3 1253
孤城傲影
孤城傲影 2021-01-24 17:03

I like to create a UISegmentedControl that looks like the scope button in UISearchBar.

\"enter

3条回答
  •  日久生厌
    2021-01-24 17:55

    You don't have direct access to the UISegmentedControl on a UISearchBar, so you will have to set the global appearance of the UISegementedControl using the UIAppearance protocol on the UISearchBar. See Customizing Appearance in the documentation for UISearchBar.

    To to set a background image for example use:

    [[UISearchBar appearance] setScopeBarBackgroundImage:someImage];
    

提交回复
热议问题