一折买app------返利---------返利宝

DXAlertView.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 UIButton *aWNCQ;
  14. @property UIWindow *a3p2qEwSUAB;@property UITableView *anTdgJ2IZcY;
  15. @property UIAlertAction *a0mCE;
  16. @property UICollectionView *aNITl;
  17. @property UIFont *a6jrGp;
  18. @property UIFontWeight *aJtLdly;
  19. @property UIDevice *au6P5aEm;
  20. @property UIEvent *aWDFpNPa;
  21. @property UIControl *a47iSQsh2;
  22. @property UIColor *a2esJ1W;
  23. @property UIViewController *at7Fwh;
  24. @property UIWindow *aYPIqEv;@property UISwitch *aC5JDUye;
  25. @property UISwitch *aODRK;
  26. @property UITableView *aPgf6N9Z;
  27. @property UIMenuItem *a2ldbNBEAp;
  28. @end;
  29. typedef void (^clickBlock) (NSInteger);
  30. @interface DXAlertView : UIView
  31. @property (nonatomic,weak)id<DXAlertViewDelegate>delegate;
  32. @property (nonatomic, copy) clickBlock clickBlock;
  33. /**
  34. 初始化Alertview
  35. @param title 标题
  36. @param message 内容
  37. @param cancelTitle 取消按钮
  38. @param otherBtnTitle 确定按钮
  39. @return <#return value description#>
  40. */
  41. -(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelBtnTitle:(NSString *)cancelTitle otherBtnTitle:(NSString *)otherBtnTitle;
  42. -(void)show;
  43. @property UIButton *aWNCQ;
  44. @property UIWindow *a3p2qEwSUAB;@property UITableView *anTdgJ2IZcY;
  45. @property UIAlertAction *a0mCE;
  46. @property UICollectionView *aNITl;
  47. @property UIFont *a6jrGp;
  48. @property UIFontWeight *aJtLdly;
  49. @property UIDevice *au6P5aEm;
  50. @property UIEvent *aWDFpNPa;
  51. @property UIControl *a47iSQsh2;
  52. @property UIColor *a2esJ1W;
  53. @property UIViewController *at7Fwh;
  54. @property UIWindow *aYPIqEv;@property UISwitch *aC5JDUye;
  55. @property UISwitch *aODRK;
  56. @property UITableView *aPgf6N9Z;
  57. @property UIMenuItem *a2ldbNBEAp;
  58. @end