ReactiveCocoa在UITableViewCell复用的问题

1.cell的复用

之前遇到一个蛋疼问题,就是cell中又按钮,当订阅按钮点击事件时候,结果因为cell的复用,出现多个按钮事件

[[cell.playBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(id x) {
        
    }];

so,解决方案有两种

  • 方案一:UITableViewCell复用时需要取消cell上各个组件的订阅
- (void)prepareForReuse {
    [super prepareForReuse];
    [self.playBtn dispose], self.playBtn = nil;
}
  • 方案二:使用rac_prepareForReuseSignal
[[[cell.playBtn rac_signalForControlEvents:UIControlEventTouchUpInside] takeUntil:cell.rac_prepareForReuseSignal] subscribeNext:^(id x) {
        
    }];

你可能感兴趣的:(ReactiveCocoa在UITableViewCell复用的问题)