财神随手记账

WZNoticeAlertView.h 1023B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // WZNoticeAlertView.h
  3. // WZNoticeAlertView
  4. //
  5. // Created by juru on 2018/1/27.
  6. // Copyright © 2018年 wangzhao. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WZNoticeAlertView : UIView
  10. @property(nonatomic, strong) NSString *btnTitle;
  11. @property(nonatomic, strong) NSString *nextBtnTitle;
  12. @property(nonatomic, strong) NSString *iconImageStr;
  13. @property(nonatomic, strong) NSString *message;
  14. @property(nonatomic, strong) NSString *title;
  15. @property(nonatomic, strong) NSString *removeImageStr;
  16. @property(nonatomic, copy) void(^tapCallback)(NSInteger index);
  17. @property(nonatomic, copy) void(^close)(void);
  18. - (instancetype)initWithFrame:(CGRect)frame
  19. btnTitle:(NSString*)btnTitle
  20. nextBtnTitle:(NSString *)nextBtnTitle
  21. iconImageStr:(NSString *)iconImageStr
  22. message:(NSString *)message
  23. title:(NSString *)title
  24. removeImageStr:(NSString *)removeImageStr;
  25. - (void)show;
  26. - (void)remove;
  27. @end