WMZBannerControl.h 625 B

12345678910111213141516171819202122
  1. //
  2. // WMZBannerControl.h
  3. // WMZBanner
  4. //
  5. // Created by wmz on 2019/9/6.
  6. // Copyright © 2019 wmz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WMZBannerParam.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WMZBannerControl : UIPageControl
  12. @property (nonatomic, strong) UIImage *currentImage;
  13. @property (nonatomic, strong) UIImage *inactiveImage;
  14. @property (nonatomic, assign) CGSize currentImageSize;
  15. @property (nonatomic, assign) CGSize inactiveImageSize;
  16. @property (nonatomic, strong) WMZBannerParam *param;
  17. - (instancetype)initWithFrame:(CGRect)frame WithModel:(WMZBannerParam *)param;
  18. @end
  19. NS_ASSUME_NONNULL_END