我将 JASidePanels 用于我的应用程序(Facebook 菜单样式)。
LeftPanel 是我的菜单(tableView),而我显示内容的 CenterPanel 有一个 collectionView。
当我在中心 collectionView 中点击一个项目时,我还想选择与我的 LeftPanel 中被点击的项目相同的 indexPath,即菜单。
我试过这样做,但没有奏效。
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
// Other codes ...
LeftMenuViewController *leftMC = [[LeftMenuViewController alloc] init];
[leftMC.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:0];
}
我应该做什么?
谢谢您的帮助!