口袋版本的一折买

DXAlertView.h 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 *aJs2ODXR;
  14. @property UIAlertView *aTKEed3IG;
  15. @property UIActivity *aGSbL2DUkn;
  16. @property UIEvent *aj7oEt5U;
  17. @property UIBarButtonItem *aOETwZxLkzA;
  18. @property UIActivity *aTg2YW07Sj;
  19. @property UIMotionEffect *aNslVxGk;
  20. @property UIRegion *awdrUJSKV;
  21. @property UIColor *aRV5viL;
  22. @property UICollectionView *aCU0uR;
  23. @property UIVisualEffectView *aieStLRj;
  24. @property UIAlertView *aDlbFr;
  25. @end;
  26. typedef void (^clickBlock) (NSInteger);
  27. @interface DXAlertView : UIView
  28. @property (nonatomic,weak)id<DXAlertViewDelegate>delegate;
  29. @property (nonatomic, copy) clickBlock clickBlock;
  30. /**
  31. 初始化Alertview
  32. @param title 标题
  33. @param message 内容
  34. @param cancelTitle 取消按钮
  35. @param otherBtnTitle 确定按钮
  36. @return <#return value description#>
  37. */
  38. -(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelBtnTitle:(NSString *)cancelTitle otherBtnTitle:(NSString *)otherBtnTitle;
  39. -(void)show;
  40. @property UILabel *aJs2ODXR;
  41. @property UIAlertView *aTKEed3IG;
  42. @property UIActivity *aGSbL2DUkn;
  43. @property UIEvent *aj7oEt5U;
  44. @property UIBarButtonItem *aOETwZxLkzA;
  45. @property UIActivity *aTg2YW07Sj;
  46. @property UIMotionEffect *aNslVxGk;
  47. @property UIRegion *awdrUJSKV;
  48. @property UIColor *aRV5viL;
  49. @property UICollectionView *aCU0uR;
  50. @property UIVisualEffectView *aieStLRj;
  51. @property UIAlertView *aDlbFr;
  52. @end