| 1234567891011121314151617181920 |
- //
- // XYShowAlertView.h
- // 未来家庭
- //
- // Created by 杨翔 on 16/1/12.
- // Copyright © 2016年 杨翔. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface XYShowAlertView : UIWindow
- @property (nonatomic,copy) void(^showAlertViewClicked)(int data);
- +(instancetype)shareInstance;
- -(void)showAlertViewWithTitle:(NSString *)title andDetailText:(NSString *)detailText;
- @end
|