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
does not cause the deselection to occur with an animation.
I set some breakpoints and think the problem is that this call triggers multiple deselection code, and the first one doesn't animate
In KKGridViewCell first setPressedState is called which will do _selectedBackgroundView.alpha = 0.f; without animation, next setSelected with a nimation gets called which will try to do the animation but the background is already invisible.
The text was updated successfully, but these errors were encountered:
Calling
[self.gridView deselectItemsAtIndexPaths:[self.gridView indexPathsForSelectedCells] animated:YES];
does not cause the deselection to occur with an animation.
I set some breakpoints and think the problem is that this call triggers multiple deselection code, and the first one doesn't animate
In KKGridViewCell first setPressedState is called which will do _selectedBackgroundView.alpha = 0.f; without animation, next setSelected with a nimation gets called which will try to do the animation but the background is already invisible.
The text was updated successfully, but these errors were encountered: