summaryrefslogtreecommitdiffstats
path: root/NativeApp/Apple/Source/Classes/iOS/BaseView.h
blob: 9e8b99e35ef1967a4cc7bd0fa344a182589ccad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import <UIKit/UIKit.h>

@interface BaseView : UIView

@property (readonly, nonatomic, getter=isAnimating) BOOL animating;

- (void) startAnimation;
- (void) stopAnimation;
- (void) terminate;

@end