RATreeView icon indicating copy to clipboard operation
RATreeView copied to clipboard

-[RATableView tableView:didEndDisplayingCell:forRowAtIndexPath:]: unrecognized selector sent to instance 0x10390f000

Open yzl140520 opened this issue 7 years ago • 3 comments

-[RATableView tableView:didEndDisplayingCell:forRowAtIndexPath:]: unrecognized selector sent to instance 0x10390f000 我没有在任何地方手动调用这个接口,为什么会在这里崩溃

yzl140520 avatar Sep 04 '17 02:09 yzl140520

-[RATableView tableView:didEndDisplayingCell:forRowAtIndexPath:]: unrecognized selector sent to instance 0x10390f000 我也出现了这个问题,频率很高,请问为什么

834519879 avatar Oct 18 '17 08:10 834519879

把这个函数删除试试

  • (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { if ([self.delegate respondsToSelector:@selector(treeView:didEndDisplayingCell:forItem:)]) { RATreeNode *treeNode = [self treeNodeForIndexPath:indexPath]; [self.delegate treeView:self didEndDisplayingCell:cell forItem:treeNode.item]; } }

ghost avatar Nov 13 '17 10:11 ghost

你应该取消代理当页面消失的时候

limingnie avatar Jul 06 '21 03:07 limingnie