14 lines
396 B
C
14 lines
396 B
C
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@interface MWMZoomButtonsView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic) CGFloat topBound;
|
||
|
|
@property (nonatomic) CGFloat bottomBound;
|
||
|
|
|
||
|
|
- (instancetype)initWithFrame:(CGRect)frame __attribute__((unavailable("initWithFrame is not available")));
|
||
|
|
- (instancetype)init __attribute__((unavailable("init is not available")));
|
||
|
|
|
||
|
|
- (void)setHidden:(BOOL)hidden animated:(BOOL)animated;
|
||
|
|
|
||
|
|
@end
|