Спасибо всем за ответы.Наконец я делаю это и работаю:
Сначала в моем IBAction:
View2Controller* modalViewController = [[[View2Controller alloc] initWithNibName:@"View2Controller" bundle:nil] autorelease];
[self.view addSubview:modalViewController.view];
Затем в View2Controller.m в viewDidLoad:
[self.view setBackgroundColor:[UIColor clearColor]];
[UIView beginAnimations:nil context:nil];
[self.view setFrame:CGRectMake(0, 1024, 128, 600)];
[UIView setAnimationDuration:0.75f];
[self.view setFrame:CGRectMake(0, 404, 128, 600)];
[UIView commitAnimations];