RDCheckAppVersion.h 578 B

1234567891011121314151617181920212223242526
  1. //
  2. // RDCheckAppVersion.h
  3. // SmartHome
  4. //
  5. // Created by Rayson on 2018/3/17.
  6. // Copyright © 2018年 Realde. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define TheCheckAppVersion [RDCheckAppVersion sharedInstance]
  10. @interface RDCheckAppVersion : NSObject
  11. @property (nonatomic, copy) NSString *curVersion;
  12. @property (nonatomic, copy) NSString *curVersionDetail;
  13. @property (nonatomic, assign) BOOL isShowing; // ** 正在显示更新提示框
  14. +(RDCheckAppVersion *) sharedInstance;
  15. -(void) checkUpdate;
  16. -(void) checkUpdateAlert;
  17. + (BOOL)isChecking;
  18. @end