/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
iOS/RobloxUI/Source/Helpers/UpgradeCheckHelper.h
27 строк
721 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// // UpgradeCheckHelper.h // RobloxMobile // // Created by Ben Tkacheff on 4/9/13. // Copyright (c) 2013 ROBLOX. All rights reserved. // // This class is used by AppDelegate to determine whether our client version is up to date // with what we offer in the app store. If not, this class will alert this user. #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface UpgradeCheckHelper : NSObject <UIAlertViewDelegate, NSURLConnectionDataDelegate> { UIAlertView* upgradeAlertView; NSURLConnection* upgradeConnection; NSMutableData* upgradeResponseData; } + (UpgradeCheckHelper*) getUpgradeCheckHelper; + (NSString *) getUpgradeUrl; + (void) checkForUpdate:(NSString*) appName; @end