Custom UISegmentedControl like the Scope control in UISearchBar

做~自己de王妃 提交于 2019-12-04 05:10:33

问题


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

Do you know how to do it?

Update: So I want to create a UISegmentedControl like this
(please notice the appearance), this is not related with UISearchBar,
I just want to make it LOOKS LIKE the scope buttons in UISearchBar.


回答1:


Try this:

mySegmentedBar.segmentedControlStyle = 7;

It's undocumented, but seems to pass App Store review.




回答2:


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.

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

Drag a UISegmentedControl onto the UIToolbar.

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.




回答3:


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];


来源:https://stackoverflow.com/questions/9169095/custom-uisegmentedcontrol-like-the-scope-control-in-uisearchbar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!