RSS フィードからの画像を表示する UICollectionView コントロールがある 2 番目のタブに 4 つのタブがある TabBar ベースのアプリを作成しています。
ユーザーが画像をクリックすると、別の UIViewController に表示され、その画像の詳細が表示されます。詳細ページのタブバーを非表示にしたい。私は多くの方法を試しましたが、うまくいきませんでした。
以下は、での選択に関する私のコードですUICollectionView
。
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
DetailView *detail=[[DetailView alloc] init];
detail.item= (MWFeedItem *)[itemsToDisplay objectAtIndex:indexPath.row];
[self.navigationController pushViewController:detail animated:YES];
[detail setHidesBottomBarWhenPushed:YES];
[self.myCollectionView deselectItemAtIndexPath:indexPath animated:YES];
}
setHidesBottomBarWhenPushed:YES
詳細ページに表示されるタブバーを詳細ページに設定しました。
ここで何か他のことをしなければなりませんか。