Loading...
Searching...
No Matches
NCZoomControls.h
Go to the documentation of this file.
1//
2// NCZoomControls.h
3// Zoom controls widget for navigation view
4//
5
6#import <UIKit/UIKit.h>
7
8NS_ASSUME_NONNULL_BEGIN
9
11
13typedef void(^NCZoomInCallback)(void);
14
16typedef void(^NCZoomOutCallback)(void);
17
27@interface NCZoomControls : UIView
28
34- (instancetype)initWithOnZoomIn:(NCZoomInCallback)onZoomIn onZoomOut:(NCZoomOutCallback)onZoomOut;
35
42- (instancetype)initWithOnZoomIn:(NCZoomInCallback)onZoomIn
43 onZoomOut:(NCZoomOutCallback)onZoomOut
44 config:(nullable NCZoomControlsConfig *)config;
45
47- (void)applyConfig:(nullable NCZoomControlsConfig *)config;
48
49@end
50
51NS_ASSUME_NONNULL_END