Monotouch添加子视图动画

发布于 2024-10-31 07:39:11 字数 392 浏览 1 评论 0原文

我有我的导航控制器和视图控制器。当我按下导航栏中的按钮时,我似乎无法在这些视图之间进行简单的转换。现在它就弹出了。

当我按下导航控制器中的按钮时,它会调用主文件中的以下代码。

public void GoToViewController()
{
      window.AddSubview(theViewController.View);
}

我一直在调用:

UIView.SetAnimationTransition(UIViewAnimationTransition.None, spct.View, true); 

它有效,但我想让这个视图简单地从右侧出现在另一个视图上(就像导航控制器对其视图所做的那样)。

I have my navigation controller and my view controller. I can't seem to get a simple transition between those views when I push a button in the navigation bar. It now just pops up.

When I push the button in the navigation controller, it calls the code below in the main file.

public void GoToViewController()
{
      window.AddSubview(theViewController.View);
}

I have been calling:

UIView.SetAnimationTransition(UIViewAnimationTransition.None, spct.View, true); 

which works, but I would like to let this view simple appear from the right, over the other view (just like the navigation controller does with its views).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2024-11-07 07:39:11

您应该只使用 UINavigationController。

进行转变应该相当容易,并且比尝试重建苹果已经建立的东西更值得。

对于每个视图控制器,您应该能够将其基类更改为 UINavigationController,或者如果您没有将其子类化,则只需将其类型更改为 UINavigationController。之后,您只需替换自定义转换代码即可使用 PushViewController()、PopViewControllerAnimated() 等。

一般来说,使用 UINavigationController 相当简单。

You should just use UINavigationController.

Making the transition should be fairly easy, and is worth it over trying to recreate what Apple has already built.

For each of your view controllers, you should be able to change their base class to UINavigationController--or just change their type to UINavigationController if you did not subclass them. After that, you should just have to replace your custom transition code to use PushViewController(), PopViewControllerAnimated(), etc.

Using UINavigationController is fairly simple in general.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文