0

在 self.window 上添加视图和控制器时我遇到了一些问题。这是代码。我的 BookListViewController 类拥有一个名为 BookListView 的视图对象。问题出现在makeKeyAndVisible方法上。谢谢。

self.bookListViewController = [[bookListViewController alloc] init];
CGRect applicationRect = [[UIScreen mainScreen] applicationFrame];
self.bookListViewController.bookListView = [[[BookListView alloc] initWithFrame:applicationBound] autorelease];
self.window.rootController = self.bookListViewController;
[self.window addSubview:self.bookListViewController.bookListView];
[self.window makeKeyAndVisible];
4

0 回答 0