Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

currently I'm using the SVSegmentedControl by Sam Vermette - works great, but I'm asking myself if it's possible to change the layout of the SVSegmentedControl or the UISegmentedControl in general?

I want to have 2 rows with 2 "cells" / row, is that somehow possible?

Thanks

share|improve this question
Use two segmented controls. – Dustin Aug 8 '12 at 13:57

3 Answers

If you want to have 2 rows, each with two cells, this isn't a thing that you can change with default segmented control behavior.

If you want something that looks like a box with 4 sections and behaves like a segmented control (only allows one part to be selected) then create 2 segmented controls. Customize how "it"(they) look(s) with backgroundImageForState:barMetrics: and other similar methods. When you detect that one of the control's parts has been selected, then deselect all of the other parts in both controls.

share|improve this answer

If you look at the source code, it doesn't actually inherit from UISegmentedControl, instead from UIControl. So if you wan't to customise UISegmentedControl, your best bet looks like building a similarly behaving control from scratch.

share|improve this answer

you can use this segment you can do whatever you wish.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.