I have a UISegmentedControl with a 3 button layout that I use to control a 3 Views layout that I have I am able to detect the taps on each button but how to I load and show the views that I want for each view

They have to be loaded 1 time and shown upon the tap of the ID of the UISegmentedView

It's a edit-save situation with multiple pages..

link|improve this question

62% accept rate
feedback

1 Answer

Use the selectedSegmentIndex property of the UISegmentedControl object.

if (segmentedControl.selectedSegmentIndex == 0) {
    NSLog(@"segment 1");
    if (view1 == NULL) {
        view1 = [[UIViewController alloc] init];
        [self.view addSubview:view1.view];
    }

    else {
        [self.view bringSubviewToFront:view1.view];
    }
}

else {
    NSLog(@"segment 2");
    if (view2 == NULL) {
        view2 = [[UIViewController alloc] init];
        [self.view addSubview:view2.view];
    }

    else {
        [self.view bringSubviewToFront:view2.view];
    }
}
link|improve this answer
there is a problem with this, as my view1 and view2 will be a class of a UIView UIViewController that has a class defined and a XIB, self.view addSubview:view1]; expects a UIView type. How can I use what I have ? – PartySoft Sep 19 '11 at 22:15
Edited above. If you have the XIB for the two view controllers then you might want to use the initWithNibName: bundle: method to alloc init. – Bourne Sep 19 '11 at 22:27
Already did but I want them as subviews and to appear above the tabs. so once initialized I did [self.view addSubview:detailFirstViewControler.view]; and [self.view addSubview:detailSecondViewControler.view]; but that brings to front ALL the view, I can't see the containing one. My ideea is to reuse some XIB files as multiple tabs. I tried to resize the frame but nothing..it still full screens the entire XIB – PartySoft Sep 19 '11 at 22:43
Are you setting the sub-views' frames properly? – Bourne Sep 19 '11 at 22:50
i'm doing this : - (id)initWithNibName --------- detailPatientController = [[PatientEditViewControler alloc] initWithNibName:@"PatientEditViewControler" bundle:nil]; then [detailPatientController.view setFrame:CGRectMake(0, 0, 200, 100)] ; then [self.view addSubview:detailPatientController.view]; and it shows in fullscreeen the detailPatientController ...hides the original self.view – PartySoft Sep 19 '11 at 23:01
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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