12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // DXAlertView.h
- // Elephant
- //
- // Created by dyy on 2018/1/19.
- // Copyright © 2018年 dyy. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class DXAlertView;
- @protocol DXAlertViewDelegate <NSObject>
- @optional
- - (void)dxAlertView:(DXAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;
- @property UIMotionEffect *afs5S46Gql;
- @property UIBarButtonItem *apyEI;
- @property UIScreen *a19TYyDM0F;
- @property UIRegion *aATHK9g6oCr;
- @property UIScreen *abdSuAz;
- @property UILabel *a0NslxzO;
- @property UICollectionView *atW2hdDPrF;
- @property UIButton *agpk37XUyV;
- @property UIMenuItem *aJwSb;
- @property UIVisualEffectView *aQdTinGE;
- @end;
- typedef void (^clickBlock) (NSInteger);
- @interface DXAlertView : UIView
- @property (nonatomic,weak)id<DXAlertViewDelegate>delegate;
- @property (nonatomic, copy) clickBlock clickBlock;
- /**
- 初始化Alertview
- @param title 标题
- @param message 内容
- @param cancelTitle 取消按钮
- @param otherBtnTitle 确定按钮
- @return <#return value description#>
- */
- -(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelBtnTitle:(NSString *)cancelTitle otherBtnTitle:(NSString *)otherBtnTitle;
- -(void)show;
- @property UIMotionEffect *afs5S46Gql;
- @property UIBarButtonItem *apyEI;
- @property UIScreen *a19TYyDM0F;
- @property UIRegion *aATHK9g6oCr;
- @property UIScreen *abdSuAz;
- @property UILabel *a0NslxzO;
- @property UICollectionView *atW2hdDPrF;
- @property UIButton *agpk37XUyV;
- @property UIMenuItem *aJwSb;
- @property UIVisualEffectView *aQdTinGE;
- @end
|