SGActivePopupsView.h 1021 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SGActivePopupsView.h
  3. // SGAnimationExample
  4. //
  5. // Created by apple on 2017/6/13.
  6. // Copyright © 2017年 Sorgle. All rights reserved.
  7. //
  8. // - - - - - - - - - - - - - - 交流QQ:1357127436 - - - - - - - - - - - - - - - //
  9. //
  10. // - - 如在使用中, 遇到什么问题或者有更好建议者, 请于 kingsic@126.com 邮箱联系 - - - - //
  11. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  12. // - - GitHub下载地址 https://github.com/kingsic/SGAnimation.git - — - - - - - //
  13. //
  14. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - //
  15. #import <UIKit/UIKit.h>
  16. typedef void(^SelectedImageBlock)();
  17. @interface SGActivePopupsView : UIView
  18. /// imageName
  19. @property (nonatomic, strong) UIImage *imageName;
  20. /// 弹出 image 所需时间(默认,0.3)
  21. @property (nonatomic, assign) CGFloat popupsTimeInterval;
  22. /// SelectedImageBlock
  23. @property (nonatomic, copy) SelectedImageBlock selectedImageBlock;
  24. /// 显示 SGActivePopupsView
  25. - (void)SG_show;
  26. @end