Xcode "Se espera que las ventanas de la aplicación tengan un controlador de vista raíz al final del inicio de la aplicación" error

Soy muy nuevo en esto, y estoy haciendo mi primera aplicación. Cuando intento ejecutarlo, xcode dice que fue exitoso, pero el simulador simplemente me da una pantalla negra y recibo este mensaje. Aquí está mi código main.m:

    @implementation ViewController

    @synthesize button;

    @synthesize text;

    - (IBAction)pushButton:(id)sender 
    {
        CGRect webRect=CGRectMake(10, 10, 2048, 1536);
        UIWebView *myWebview = [[UIWebView alloc] initWithFrame:webRect];
        myWebview.scalesPageToFit = YES;
        NSURL *url = [NSURL URLWithString:@"http://www.coronetjck/schedule"];
        NSURLRequest *request = [NSURLRequest requestWithURL:url];
        [myWebview loadRequest:request];
         [self.view addSubview:myWebview];
     }
    //web view after pushing button

     -(void)loadView {
         NSString *moviePath = [[[NSBundle mainBundle] resourcePath]
    stringByAppendingPathComponent:@"the_people_vs._george_lucas_teaser_hd_teaser_2_640x360.mp4"];

        MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc]      initWithContentURL:[NSURL fileURLWithPath:moviePath]];

        moviePlayer.movieControlMode = MPMovieControlModeDefault;

        [[NSNotificationCenter defaultCenter] addObserver:self    selector:@selector(movieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer]; 

        [moviePlayer play];
     }
     //video

     - (void)viewDidLoad
     {
         [super viewDidLoad];
         // Do any additional setup after loading the view, typically from a nib.
    }

    - (void)viewDidUnload
     {
         [self setButton:nil];
         [self setText:nil];
         [super viewDidUnload];
            // Release any retained subviews of the main view.
    }

     - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
          return YES;
    }

     @end

No estoy seguro de lo que hice mal, ¿podría alguien ayudarme? Te lo agradeceria mucho

Respuestas a la pregunta(0)

Su respuesta a la pregunta