Xcode:如果您的项目不是View Controller项目,您可以更改视图吗?

时间:2011-09-02 18:19:57

标签: ios xcode view modalviewcontroller viewcontroller

我想改变观点,例如。;

[example presentModalViewController:example2 animated:YES];

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

谢谢,

詹姆斯

1 个答案:

答案 0 :(得分:1)

添加UIViewController的新子类并使用:

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

[targetView release];

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

这对你有用吗?我不知道有什么像“单一视图应用程序”......