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.

I have a segmentedbar control.

NSArray *optionsType = [NSArray arrayWithObjects: @"Geopoint", @"Directions", @" ", nil];
    segmentedOption = [[UISegmentedControl alloc] initWithItems:optionsType] ;

I am using one of the segmented bar "Geopoint" to show a subview (geopointView)when pressed.

test = [segmentedOption titleForSegmentAtIndex: [segmentedOption selectedSegmentIndex]];

if([test isEqualToString:@"Geopoint"])
[self.view addsubview:geopointViw];

When necessity of that "subview" is over, it is removed from superview.

[geopointview removefromsuperview];

all of these changes are occurring on same viewController. But now since sagmented bar "geopoint" is already pressed, it wont function until another segmented bar is pressed.

Is there any way so that I can reset segmentedcontrol?

thanks for any help in advance

share|improve this question
try setting segmentedControl.selectedSegmentIndex = -1; or try segmentedControl.selectedSegmentIndex = 4; since u have only 3 items....in the array – booleanBoy Sep 8 '11 at 7:28

2 Answers

up vote 3 down vote accepted

If you don't want the segmented control to show the selected state, set,

segmentedControl.momentary = YES;

This makes the segments to work as buttons.

share|improve this answer
Thnaks a lot.. it worked as required. – alekhine Sep 8 '11 at 7:29
You are welcome! – EmptyStack Sep 8 '11 at 8:17

Use can use segmentedOption.selectedSegmentIndex = 1; while you remove subview from superview.

share|improve this answer
Thanks a lot for your answer. – alekhine Sep 8 '11 at 7:29

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.