Loading...
Searching...
No Matches
NCZoomControlsConfig.h
Go to the documentation of this file.
1//
2// NCZoomControlsConfig.h
3// Configuration for NCZoomControls widget
4//
5
6#import <UIKit/UIKit.h>
7
8NS_ASSUME_NONNULL_BEGIN
9
23@interface NCZoomControlsConfig : NSObject
24
25@property (nonatomic, strong, nullable) UIImage *zoomInIcon;
26@property (nonatomic, strong, nullable) UIImage *zoomOutIcon;
27@property (nonatomic, strong, nullable) UIColor *buttonBackgroundColor;
28@property (nonatomic, strong, nullable) UIColor *textColor;
29@property (nonatomic, assign) CGFloat buttonWidth;
30@property (nonatomic, assign) CGFloat zoomControlsHeight;
31@property (nonatomic, assign) UIEdgeInsets insets;
32
33+ (instancetype)defaultConfig;
34
35@end
36
37NS_ASSUME_NONNULL_END