Custom UISegmentedControl like the Scope control in UISearchBar

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

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

\"enter

3条回答
  •  别那么骄傲
    2021-01-24 18:00

    This can be done by adding a UISearchBar and a UIToolbar with a UISegmentedControl in it to the view. You can do this in code or in Interface Builder.

    Drag a UISearchBar out onto the view and align it to the top.

    enter image description here

    Add a UIToolbar and remove the button that comes on it.

    ToolBar

    Drag a UISegmentedControl onto the UIToolbar.

    UISegmentedControl

    Wire everything up to the properties in your h. If you want to change the look of the controls, you can modify the tint color of both the items to make them a more silver look or something completely different.

    Tinted Control

提交回复
热议问题