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

How to fix the error view Controller not declared?

oh sure…..

this is my rootviewcontroller.m file which is throwing error-"viewcontroller not decalared"

//
//  RootViewController.m
//  Dolphia
//
//  Created by Dolphia Nandi on 4/3/11.
//  Copyright 2011 State University of New York at Buffalo. All rights reserved.
//


#import "RootViewController.h"
#import "MainViewController.h"
#import "FlipsideViewController.h"

@implementation RootViewController

@synthesize mainViewController;
@synthesize flipSideViewController;

- (void)loadMainViewController {
    MainViewController *ViewController = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
    self.mainViewController = ViewController;
    self.mainViewController.flipDelegate = self;
    [ViewController release];
}

- (void)loadFlipSideViewController {
    flipSideViewController *viewController = [[flipSideViewController alloc] initWithNibName:@"flipSideViewController" bundle:nil];
    self.flipSideViewController = viewController;
    self.flipSideViewController=self;
    [viewController release];
}

- (void)viewDidLoad {
    [self loadMainViewController]; // Don't load the flipside view unless / until necessary
    [self.view addSubview:mainViewController.view];
}

// This method is called when either of the subviews send a delegate message to us.
// It flips the displayed view from the whoever sent the message to the other.
- (void)toggleView:(id)sender {
    if (flipSideViewController == nil) {
        [self loadFlipSideViewController];
    }

    UIView *mainWindow = mainViewController.view;
    UIView *flipSideView = flipSideViewController.view;
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:1];
    if(flipeffect >= 0 && flipeffect < 2) {
        flipeffect++;
        [UIView setAnimationTransition:((mainViewController == sender) ? UIViewAnimationTransitionFlipFromRight : UIViewAnimationTransitionFlipFromLeft) forView:self.view cache:YES];
    } else if (flipeffect >= 2 && flipeffect < 4) {
        flipeffect++;
        [UIView setAnimationTransition:((mainViewController == sender) ? UIViewAnimationTransitionCurlUp : UIViewAnimationTransitionCurlDown) forView:self.view cache:YES];
    } else if (flipeffect >= 4 && flipeffect < 6) {
        flipeffect++;
        [UIView setAnimationTransition:((mainViewController == sender) ? UIViewAnimationTransitionFlipFromLeft : UIViewAnimationTransitionFlipFromRight) forView:self.view cache:YES];
    } else {
        flipeffect++;
        if(flipeffect > 7)
            flipeffect = 0;
        [UIView setAnimationTransition:((mainViewController == sender) ? UIViewAnimationTransitionCurlDown : UIViewAnimationTransitionCurlUp) forView:self.view cache:YES];
    }

    if (mainViewController == sender) {
        [flipSideViewController viewWillAppear:YES];
        [mainViewController viewWillDisappear:YES];
        [mainWindow removeFromSuperview];
        [self.view addSubview:flipSideView];
        [mainViewController viewDidDisappear:YES];
        [flipSideViewController viewDidAppear:YES];
    } else {
        [mainViewController viewWillAppear:YES];
        [flipSideViewController viewWillDisappear:YES];
        [flipSideView removeFromSuperview];
        [self.view addSubview:mainWindow];
        [flipSideViewController viewDidDisappear:YES];
        [mainViewController viewDidAppear:YES];
    }
[UIView commitAnimations];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
}

- (void)dealloc {
    [mainViewController release];
    [flipSideViewController release];
    [super dealloc];
}

@end
share|improve this question
1  
Declare it. You'll need to be a bit more specific if you want a more complete answer. – Terry Wilcox Apr 6 '11 at 19:56
can you give a little more detail. Maybe paste the exact error message? – gideon Apr 6 '11 at 19:57
4  
Can you be more vague? – David Apr 6 '11 at 19:57
As Jordan commented earlier, in loadFlipsideViewController, the first line should use the class name FlipsideViewController instead of the ivar name flipSideViewController. Additionally, self.flipSideViewController=self; was probably meant to be something like self.flipSideViewController.delegate = self;. – Anna Karenina Apr 6 '11 at 21:02

closed as not a real question by middaparka, Ole Begemann, Vladimir, gideon, Daniel Dickison Apr 6 '11 at 19:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.