点击时 UICollectionViewCell 不显示 DetailView

Posted

技术标签:

【中文标题】点击时 UICollectionViewCell 不显示 DetailView【英文标题】:UICollectionViewCell is not showing DetailView when tapped 【发布时间】:2012-12-06 12:05:34 【问题描述】:

我在单元格中实现了一个带有 ImageViews 的 CollectionView。我希望在点击单元格时出现 DetailViewController。我在 ImageView 和 Cell 的 Interface Builder 中设置了 User Interaction Enabled。我做错了什么?我在 ViewController 中有这段代码:

- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;

    return 9;


- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath;


    PhotosCell *cell = [cv dequeueReusableCellWithReuseIdentifier:kCellID forIndexPath:indexPath];



    // load the image for this cell
    NSString *imageToLoad = [NSString stringWithFormat:@"%d.jpg", indexPath.row +1];
    // NSLog(imageToLoad);
    cell.imageView.image = [UIImage imageNamed:imageToLoad];

    return cell;


// the user tapped a collection item, load and set the image on the detail view controller
//
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender

   // NSLog(@"inside!");
    if ([[segue identifier] isEqualToString:@"showDetail"])
    
        NSIndexPath *selectedIndexPath = [[self.collectionView indexPathsForSelectedItems] objectAtIndex:0];

        // load the image, to prevent it from being cached we use 'initWithContentsOfFile'
        NSString *imageNameToLoad = [NSString stringWithFormat:@"%d_full", selectedIndexPath.row+1];
        NSString *pathToImage = [[NSBundle mainBundle] pathForResource:imageNameToLoad ofType:@".jpg"];
        UIImage *image = [[UIImage alloc] initWithContentsOfFile:pathToImage];

        PhotoDetailViewController *detailViewController = [segue destinationViewController];
        detailViewController.myImage = image;
    

但是当点击单元格时没有调用方法“prepareForSegue”...

【问题讨论】:

【参考方案1】:

实现collectionview委托方法

collectionView:didSelectItemAtIndexPath:

来电

[self performSegueWithIdentifier:@"showDetail" sender:self];

【讨论】:

是的,解决了! :) 谢谢

以上是关于点击时 UICollectionViewCell 不显示 DetailView的主要内容,如果未能解决你的问题,请参考以下文章

点击时如何在 UICollectionViewCell 中制作此动画?

点击时更改 UICollectionViewCell 内的视图不起作用

从 UICollectionViewCell 中点击按钮时,如何引用 UITableViewCell?

点击时更改 UICollectionViewCell 上的 ImageView 图像

如何在点击时更改作为自定义 UICollectionViewCell 属性的 UIButton 的 UIImage?

向下滚动时多次选择 UICollectionViewCell?