How to disable flip on JDFlipCLockView?
steve21124 opened this issue · 6 comments
steve21124 commented
How to disable flip on JDFlipCLockView.m? There is JDFlipAnimationType that can be set to JDFlipAnimationTypeNone
calimarkus commented
Why would you want this? Its all about flipping here. Currently it's not possible.
steve21124 commented
yes. I know it is about flipping. just incase if don't want flipping. I can just reuse the same class...
calimarkus commented
Yes.. currently not possible directly, sry. You could subclass JDFlipClockView and overwrite it like this:
- (void)updateValuesAnimated:(BOOL)animated;
{
[super updateValuesAnimated:NO];
}
calimarkus commented
added a property now..
steve21124 commented
wow, thats super quick.... thanks....
calimarkus commented
was working on it anyway. quick fix ,)