// // MWMAnimator.h // Maps // // Created by v.mikhaylenko on 20.04.15. // Copyright (c) 2015 MapsWithMe. All rights reserved. // #import @protocol Animation - (void)animationTick:(CFTimeInterval)dt finished:(BOOL *)finished; @end @interface MWMAnimator : NSObject + (instancetype)animatorWithScreen:(UIScreen *)screen; - (void)addAnimation:(id)animatable; - (void)removeAnimation:(id)animatable; @end @interface UIView (AnimatorAdditions) - (MWMAnimator *)animator; @end