EBCustomBannerView.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // EBCustomBannerView.h
  3. // demo
  4. //
  5. // Created by pikacode@qq.com on 2017/10/20.
  6. // Copyright © 2017年 pikacode@qq.com. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum : NSUInteger {
  10. EBCustomViewAppearModeTop,//default
  11. EBCustomViewAppearModeLeft,
  12. EBCustomViewAppearModeRight,
  13. EBCustomViewAppearModeBottom,
  14. EBCustomViewAppearModeCenter
  15. } EBCustomBannerViewAppearMode;
  16. @class EBCustomBannerViewMaker;
  17. @interface EBCustomBannerView : NSObject
  18. //make a custom view and show immediately,
  19. +(instancetype)showCustomView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block;
  20. //make a custom view and show later
  21. +(instancetype)customView:(UIView*)view block:(void(^)(EBCustomBannerViewMaker *make))block;
  22. -(void)show;
  23. -(void)hide;
  24. @end
  25. @interface EBCustomBannerViewMaker : NSObject
  26. @property(nonatomic, assign)CGRect portraitFrame;//default is view.frame
  27. @property(nonatomic, assign)CGRect landscapeFrame;//default is portraitFrame
  28. @property(nonatomic, assign)UInt32 soundID;//default is 0
  29. @property(nonatomic, strong)NSString *soundName;
  30. @property(nonatomic, assign)NSTimeInterval animationDuration;//default is 0.3
  31. @property(nonatomic, assign)NSTimeInterval stayDuration;//default is 4.0, set 0 will not hide
  32. @property(nonatomic, assign)EBCustomBannerViewAppearMode portraitMode;//default is top
  33. @property(nonatomic, assign)EBCustomBannerViewAppearMode landscapeMode;//default is top
  34. @property(nonatomic, strong)NSArray<NSNumber*>*centerModeDurations;//default is @[@0.3, @0.2, @0.1];
  35. @property(nonatomic, assign)BOOL vibrateOnMute;//default is YES
  36. @end