UITableView
当我的拖拽结束时,我需要得到通知。
但我正在处理 UITableView 的类别,所以我不能用它scrollViewDidEndDragging:willDecelerate:
来存档。
我尝试使用 KVO 在dragging
Key Path 上进行观察:
[self addObserver:self forKeyPath:@"dragging" options:NSKeyValueObservingOptionNew context:nil];
但是observeValueForKeyPath:ofObject:change:context:
没有被调用,因为 UITableView.dragging 没有和 setter 并且这个属性不符合 KVO。
有没有其他方法可以存档这个期望使用scrollViewDidEndDragging:willDecelerate:
?
任何帮助将不胜感激!谢谢!