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.

In one UIViewController, I have a UISegmentedControl.

When I select segmented control.selectedindex==0, it will show a textfield.

When I select segmentedcontrol.selectedindex==1, it will show another segmented control instead of textfield.

How can I do that?

share|improve this question
Can you be more specific?? It doesn't let any one understand what you tend to do!!! – Kuldeep Mar 20 '12 at 12:13
@Kevin, can you please recheck your question description! I am thinking there's some mistake. I can't understand. – Hemang Mar 20 '12 at 12:15
Segmentedcontrol.selectedindex==0 gives textfield and segmentedcontrol.selectedindex==1 gives another segmentedcontrol. – Kevin Mar 20 '12 at 12:30
Post any screenshot, if you can.. – Adil Soomro Mar 20 '12 at 12:30
I've had a go at rephrasing the question. Hopefully it's clearer now. – Stephen Darlington Mar 20 '12 at 13:00

2 Answers

up vote 1 down vote accepted

Wouldn't you just have 2 segmented controls, but one of them hidden. When selectedindex==1 on the first one, then unhide the second one.

share|improve this answer
-(IBAction)yourSegmentControl:(id)sender{

switch ((((UISegmentedControl *)sender).selectedSegmentIndex)) {
    case 0:
        {
           anothersegment.hide = YES;
           yourTextfield.hide = NO;
           break;
        }
case 1:
       {
           anothersegment.hide = NO;
           yourTextfield.hide = YES;
           break;
        }

    default:
        break;
}

}

Make sure that in your viewDidLoad you initialize your textfield and secondsegmentcontrol
both to hide = YES;

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.