2019-04-24

一般collectionView 或者 tableview都有自带的点击函数,如下:

1, collectionView

   -(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{

//一般情况,cell不是自定义UI

CollectionViewCell * cell = (UICollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];

//即为要得到的cell//自定义的cell


TitleViewCell * cell = (TitleViewCell *)[self collectionView:collectionView cellForItemAtIndexPath:indexPath];

//即为要得到的cell

}

2,tableView

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{//非自定义cellUITableViewCell * cell = (UITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];


//自定义cellNewsTableViewCell * cell = (NewsTableViewCell *)[self tableView:tableView cellForRowAtIndexPath:indexPath];

}

你可能感兴趣的:(2019-04-24)