ファイルをダウンロードして、NavigationController を介してプッシュすると、ViewController の進行状況を確認できます。ただし、モデルはそれに基づいているため、ダウンロードを別のタブバーに表示したいと考えています。
問題: 問題の 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];