JPVideoPlayer icon indicating copy to clipboard operation
JPVideoPlayer copied to clipboard

cell判断逻辑需要修改

Open AppHock opened this issue 6 years ago • 0 comments

  • (BOOL)jp_isEqualToCell:(UITableViewCell *)cell { if(!self.jp_videoURL && !cell.jp_videoURL){ return self == cell; } return [self.jp_videoURL.absoluteString isEqualToString:cell.jp_videoURL.absoluteString]; }

通过属性判断不够准备 可以直接self == cell通过内存地址判断最准确

AppHock avatar Jun 18 '19 08:06 AppHock