Hey all i've tried to add an other view it work properly but it look like a tableview I want it just like the first one how can i change the view to be like what I want not tableview btw this is my flip button code :
- (IBAction)flip:sender{
// create a new SecondViewController
SecondViewController *playback =
[[SecondViewController alloc] init];
// set the transition style to fade
playback.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
playback.delegate = self; // set playback's delegate to self
// show the PlaybackViewController
[self presentModalViewController:playback animated:YES];
[playback release]; // release the playback PlaybackViewController
} // end method flip: