我想改变观点,例如。;
[example presentModalViewController:example2 animated:YES];
但我可以在单个视图应用程序中执行此操作吗?看起来似乎是一个愚蠢的问题,但有什么方法或类似的东西吗?
谢谢,
詹姆斯
答案 0 :(得分:1)
添加UIViewController的新子类并使用:
targetView = [[<> alloc] initWithNibName:nil bundle:nil]; [self presentModalViewController:targetView animated:(YES)];
[targetView release];
在标题中:添加@class<>并负责变量声明+ getters / setters;
这对你有用吗?我不知道有什么像“单一视图应用程序”......