デリゲートではなくビュー コントローラーでタブ バー コントローラーを使用し、以下で説明するコードを使用しました。
tabController = [[UITabBarController alloc]init];
tabController.delegate = self;
scanView = [[ScanTicketView alloc] init];
searchView = [[SearchView alloc] init];
historyView = [[HistoryView alloc]init];
tabController.viewControllers=[NSArray arrayWithObjects:scanView,searchView,historyView, nil];
[self.navigationController pushViewController:tabController animated:YES];
動作しますが、これらのビューに画像を適用する方法は次のとおりです。誰でもここで私を助けることができますか?
前もって感謝します。