1. 程式人生 > >ios開發之-- tableview/collectionview獲取當前點擊的cell

ios開發之-- tableview/collectionview獲取當前點擊的cell

self cell index sel collect sele new select 定義

方法如下:

一般collectionView 或者 tableview都有自帶的點擊函數,如下:
1, collectionView
   -(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
//一般情況,cell不是自定義
    UICollectionViewCell * 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{ //非自定義cell UITableViewCell * cell = (UITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
//自定義cell NewsTableViewCell * cell = (NewsTableViewCell *)[self tableView:tableView cellForRowAtIndexPath:indexPath]; }

僅做記錄!

ios開發之-- tableview/collectionview獲取當前點擊的cell