0

我在 xcode 中创建了一个新的选项卡栏应用程序模板。我应该如何正确设置按下按钮时(向上滑动)动画的新视图?我已经看到使用 NavigationController 完成了这项工作。

我添加了一个导航栏和一个按钮,其中包含使用以下代码添加子视图的操作:

(IBAction)newPost:(id)sender
{
    // Load UIViewController from nib
    PostViewController *screen = [[PostViewController alloc] initWithNibName:@"PostViewController" bundle:nil];

    // Add to UINavigationController's stack, i.e. the view for this UITabBarController view
    [self.view addSubview:screen.view];

    // Release music, no longer needed since it is retained by the navController
    [screen release];
}
4

1 回答 1

0

我不确定这是否是您要问的,但如果您只是想要一个新的视图控制器以模态方式向上呈现自己,只需执行此操作。

1.) 新文件 --> 视图控制器

2.)

newViewcontroller *viewController = [[newViewcontroller alloc] initWithNibName:@"newViewcontroller" bundle:nil];
[self presentModalViewController:viewController animated:YES];
[viewController release];
于 2011-04-24T06:56:17.467 回答