所以我想做以下事情:
如果选择了Collection View中的任何项目,ViewController会自动更改ViewController中所有按下的项目的元素。守则如下:
- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.item)
{
GlobaleDetailAnsicht *GDA;
GDA.DetailBild.image = [UIImage imageNamed:[ZellenBilder objectAtIndex:indexPath.item]];
[self performSegueWithIdentifier:@"GlobaleDetailAnsicht" sender:self];
}
return YES;
}
就像“全球详情页面”一样。但它不会改变图像,也不会改变我用标签尝试它。我猜它没有得到被按物品的物品编号。有人可以帮忙吗?