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.

How do i change the value of a segmented control through code?

share|improve this question

3 Answers

up vote 6 down vote accepted
UISegmentedControl *cont;
.....
cont.selectedSegmentIndex = 4; //Selected index you want;
share|improve this answer
1  
note that this also causes the segmented control to send a message to the target, which you might not expect – kris Oct 11 '11 at 21:26
[segmentedControl setSelectedSegmentIndex:(NSInteger)]
share|improve this answer

You can change the segment control value by using property selectedSegmentIndex

For Ex. segmentedControlObject.selectedSegmentIndex=1;

For Tutorial you can refer this

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.