直接调用cell.button addTarget 的方法点击事件是失效的
这时需要你在xib中设置button的tag值
然后在返回cell的时候添加点击事件
UIButton *button = [cell viewWithTag:]; [button addTarget:self action:@selector(buttonClickOF) forControlEvents:UIControlEventTouchUpInside];
直接调用cell.button addTarget 的方法点击事件是失效的
这时需要你在xib中设置button的tag值
然后在返回cell的时候添加点击事件
UIButton *button = [cell viewWithTag:]; [button addTarget:self action:@selector(buttonClickOF) forControlEvents:UIControlEventTouchUpInside];