MGSwipeTableCell
MGSwipeTableCell copied to clipboard
How to get the swipeOffset changes?
I want to make some constraint changes while swiping the cell contentView. How can I get the frequent updates for swipeOffset changes?
You can override the swippeOffset property setter to detect all the frequent changes
- (void)setSwipeOffset:(CGFloat) newOffset {
[super setSwipeOffset:newOffset];
//Your constraint code here. See refreshContentView method too.
}