我正在学习 iPhone 开发,在我的应用程序中我有一些视图,但我应该使用一个窗口,所以我想在 IBaction 中调用一个窗口我如何调用一个窗口?我尝试将示例与 AppDelegate 一起使用,您可以看到我的代码:
- (IBAction)start:(id)sender {
self.window = [[[Game1ViewController alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
[self.window makeKeyAndVisible];
}
Game1ViewController 是 UIWindow 类型。
此致