在一个继承自TTViewController的类中,我创建了一个UITabBarController:
- (void)loadView
{
[super loadView];
YoutubeFeedViewController *y = [[YoutubeFeedViewController alloc] init];
SourcesController *s = [[SourcesController alloc] init];
tabBarController = [[UITabBarController alloc] init];
tabBarController.viewControllers = [NSArray arrayWithObjects:y, s, nil];
tabBarController.view.bounds = [[self view] bounds];
[y release];
[s release];
[self.view addSubview:[tabBarController view]];
}
我的YoutubeFeedViewController类实现了TTModel协议,通过TTListDataSource从Youtube获取远程数据。
我对此代码有两个问题:
当我没有标签显示它时,所有数据都被加载。
你有什么想法吗?
提前致谢。
答案 0 :(得分:1)