Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to initialize 5 viewController's that I want to be able to flick between in a UIScrollView, when my app loads.

share|improve this question

1 Answer

up vote 12 down vote accepted

Here is an example of how you can do this:

- (void)loadView {

    //standard UIScrollView is added
    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
    [self.view addSubview:scrollView];

    scrollView.pagingEnabled = YES;
    scrollView.contentSize = CGSizeMake(320*2, 460); //this must be the appropriate size!

    //required to keep your view controllers around
    controllers = [[NSMutableArray alloc] initWithCapacity:0];

    //just adding two controllers
    LabeledViewController *one = [[LabeledViewController alloc] initWithPosition:0 text:@"one"];

    [scrollView addSubview:one.view];
    [controllers addObject:one];
    [one release];

    LabeledViewController *two = [[LabeledViewController alloc] initWithPosition:1 text:@"two"];
    [scrollView addSubview:two.view];
    [controllers addObject:two];
    [two release];  

    [scrollView release];
}

LabeledViewController is pretty simple, but you can add as much to it as you want:

@implementation LabeledViewController

- (id)initWithPosition:(NSInteger)position text:(NSString*)text {
    if( self = [super init] ) {
        myPosition = position;
        myText = [text retain];
    }
    return self;
}


- (void)loadView {
    //this will setup the position in the UIScrollView
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(320*myPosition, 0, 320, 460)];
    self.view = view;
    [view release];

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 320, 50)];
    label.text = myText;

    [self.view addSubview:label];
    [label release];
}
share|improve this answer
Yep, you can always basically use your view controller as a view via its view property. viewController.view or [viewController view]. – Cirrostratus Apr 18 '10 at 0:09
Thanks for the code! one note, you should not call [super loadView] in loadView. Instead you can create a view at the beginning UIView *myView = [[UIView alloc]init]; add the scrollView to myView and then at the end do self.view = myView – David Martinez Jan 10 at 19:05

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.