(IOS新手)UITableViewCell 添加,响应UIButton ,定位到哪一个Cell


UITableViewCell 添加,响应UIButton ,如何定位到哪一个Cell?

uibutton uitableviewcell ios

lunli 10 years, 2 months ago

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

招牌Hero answered 10 years, 2 months ago

如楼上的方式。或者你可以给button设置相应的tag, 在button的点击事件里, 通过tag来确定是哪个cell被点击了。 或者更推荐的是把响应事件写在block里, 生成cell的时候传过去。。。

1A-Type answered 10 years, 2 months ago

Your Answer