1234567891011121314151617181920212223242526 |
- //
- // RDCheckAppVersion.h
- // SmartHome
- //
- // Created by Rayson on 2018/3/17.
- // Copyright © 2018年 Realde. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define TheCheckAppVersion [RDCheckAppVersion sharedInstance]
- @interface RDCheckAppVersion : NSObject
- @property (nonatomic, copy) NSString *curVersion;
- @property (nonatomic, copy) NSString *curVersionDetail;
- @property (nonatomic, assign) BOOL isShowing; // ** 正在显示更新提示框
- +(RDCheckAppVersion *) sharedInstance;
- -(void) checkUpdate;
- -(void) checkUpdateAlert;
- + (BOOL)isChecking;
- @end
|