Xcode:如果您的项目不是视图控制器项目,您可以更改视图吗?

发布于 2024-12-02 23:51:47 字数 186 浏览 5 评论 0原文

我想改变观点,例如;

[example presentModalViewController:example2 animated:YES];

但我可以在单一视图应用程序中执行此操作吗?可能看起来是一个愚蠢的问题,但是有什么方法或类似的东西吗?

谢谢,

詹姆斯

I want to change views e.g.;

[example presentModalViewController:example2 animated:YES];

But can I do this in a single view application? May seem a silly question, but is there any way or anything similar?

Thanks,

James

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

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

发布评论

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

评论(1

弥繁 2024-12-09 23:51:47

添加 UIViewController 的新子类并使用:

targetView = [[<>; alloc] initWithNibName:nil 捆绑包:nil];
[自我呈现ModalViewController:targetView动画:(是)];

[目标视图发布];

在标题中:添加@class <>并处理变量声明 + getters/setters;

这对你有用吗?我不知道有“单视图应用程序”之类的东西......

Add a new subclass of UIViewController and use:

targetView = [[<> alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:targetView animated:(YES)];

[targetView release];

In the header: add @class <> and take care of the variable declaration + getters/setters;

Will this work for you? I didn't know there was something like "single view application"...

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