搜尋

首頁  >  問答  >  主體

ios - UICollectionViewDelegate 的点击事件无效,使用 StoryBoard

我想给 CollectionViewCell 绑定【点击】行为的触发事件,但做不到。

使用 StoryBoard 在 HomeController 上放置了一个 Collection View,
里面有一个 Cell 模板。

随后在 HomeController:
1. 实现了 UICollectionViewDataSource 委托
2. 实现了 UICollectionViewDelegate 委托
3. 已将 CollectionView 绑定 dataSource 和 dalegate
4. 实现了 collectionView:didSelectItemAtIndexPath, 见如下代码:

@interface LRHomeViewController : UIViewController <UIScrollViewDelegate,UICollectionViewDelegate,UICollectionViewDataSource>
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"cell #%d was selected", indexPath.row);
    return;
}

控件以及动态元素都显示正常。但点击 Cell 无法触发事件。



PHP中文网PHP中文网2773 天前771

全部回覆(1)我來回復

  • 黄舟

    黄舟2017-04-17 12:08:35

    你的ScrollView下面有一個CollectionView,還有一個View, 那個View是乾嘛用的?大小是多大? 是不是遮擋了CollectionView, 所以導致後者沒辦法接受事件?

    回覆
    0
  • 取消回覆