Skip to main content

Custom UISegmentedControl like the Scope control in UISearchBar



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





enter image description here





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. enter image description here


Comments

  1. 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.

    ReplyDelete
  2. 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];

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?