You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Swipe version supports this already but when you set
self.swipeableView.swipingDeterminator = self;
The default behavior of shouldSwipeView does not work anymore where you swipe a bit and the card would come back. How do you set this delegate as self and still somehow about to let that default handler handle the case if I return YES to shouldSwipeView delegate method.
Swipe version supports this already but when you set
self.swipeableView.swipingDeterminator = self;
The default behavior of shouldSwipeView does not work anymore where you swipe a bit and the card would come back. How do you set this delegate as self and still somehow about to let that default handler handle the case if I return YES to shouldSwipeView delegate method.
movement:(ZLSwipeableViewMovement *)movement
swipeableView:(ZLSwipeableView *)swipeableView {
if (CardNotCompleted) {
return NO;
}
return [DefaultHandler shouldSwipeView:(UIView *)view
movement:(ZLSwipeableViewMovement *)movement
swipeableView:(ZLSwipeableView *)swipeableView] ;
}
The text was updated successfully, but these errors were encountered: