当我通过 NavigationController 推送文件时,我可以下载文件并查看 ViewController 上的进度。但是我想在另一个 tabBar 上显示下载,因为我的模型是基于它的。
问题:当我选择查看有问题的 TabBar 时,我什么也得不到。
我试过了:self.tabBarController.selectedIndex = 3;
但这显然只显示 ViewController 而不会将信息推送到它上面。
知道我需要如何更改底部代码以获得我想要的结果吗?
ASIHTTPRequest *request = [[ASIHTTPRequest alloc] initWithURL:url];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
[request setUserInfo:dictionary];
[downloadTableViewObj setDownloadDirectory:path];
[downloadTableViewObj addDownloadRequest:request];
[self.navigationController pushViewController:downloadTableViewObj animated:YES];