两折卖----返利app-----返利圈

DXAlertView.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // DXAlertView.h
  3. // Elephant
  4. //
  5. // Created by dyy on 2018/1/19.
  6. // Copyright © 2018年 dyy. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class DXAlertView;
  10. @protocol DXAlertViewDelegate <NSObject>
  11. @optional
  12. - (void)dxAlertView:(DXAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;
  13. @property UILabel *ahLOIn;
  14. @property UIInputView *aKtWsbmSvyV;
  15. @property UIApplication *agPIuARD8;
  16. @property UIColor *af8FAX;
  17. @property UIAlertAction *aYd6j42mT9;
  18. @property UIAlertAction *ax2TsyLE0YW;
  19. @property UIVisualEffectView *avo5W3;
  20. @property UIMotionEffect *ae3S9;
  21. @property UIBezierPath *aa01mspLWq;
  22. @property UIDocument *aRetuImb4BV;
  23. @end;
  24. typedef void (^clickBlock) (NSInteger);
  25. @interface DXAlertView : UIView
  26. @property (nonatomic,weak)id<DXAlertViewDelegate>delegate;
  27. @property (nonatomic, copy) clickBlock clickBlock;
  28. /**
  29. 初始化Alertview
  30. @param title 标题
  31. @param message 内容
  32. @param cancelTitle 取消按钮
  33. @param otherBtnTitle 确定按钮
  34. @return <#return value description#>
  35. */
  36. -(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelBtnTitle:(NSString *)cancelTitle otherBtnTitle:(NSString *)otherBtnTitle;
  37. -(void)show;
  38. @property UILabel *ahLOIn;
  39. @property UIInputView *aKtWsbmSvyV;
  40. @property UIApplication *agPIuARD8;
  41. @property UIColor *af8FAX;
  42. @property UIAlertAction *aYd6j42mT9;
  43. @property UIAlertAction *ax2TsyLE0YW;
  44. @property UIVisualEffectView *avo5W3;
  45. @property UIMotionEffect *ae3S9;
  46. @property UIBezierPath *aa01mspLWq;
  47. @property UIDocument *aRetuImb4BV;
  48. @end