iPhone 应用程序上的 PresentModalViewController

发布于 2024-10-20 18:43:28 字数 152 浏览 3 评论 0原文

我有一个有很多视图的应用程序(大约 20 个视图) 这些视图使用 (PresendModalViewController) 填充,并通过循环多次填充(假设 1,2,3,4,5...20 然后 1,2,3,4....20所以对于) 我的问题是,每次填充下一个视图时,我是否应该忽略上一个视图?

i have an application with many views ( about 20 view )
these views are populated using (PresendModalViewController), and populated in a number of times through a loop ( let's say that 1,2,3,4,5...20 then 1,2,3,4....20 an so for)
my question is , shall i dismiss the previous view each time i populated the next one?

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

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

发布评论

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

评论(1

本王不退位尔等都是臣 2024-10-27 18:43:28

为什么看不到这个

for(int i=1;i<=20;i++)
{
   if(i>1)
    [self.navigationController dismissModelViewControllerAnimated:YES];
   [self.navigationController presentViewController:youobj animated:YES];
}

why not see this

for(int i=1;i<=20;i++)
{
   if(i>1)
    [self.navigationController dismissModelViewControllerAnimated:YES];
   [self.navigationController presentViewController:youobj animated:YES];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文