XYShowAlertView.h 391 B

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