Vasilis

setLang added

This diff is collapsed. Click to expand it.
......@@ -13,6 +13,7 @@
+ (void)init:(NSDictionary *)launchOptions uuid:(NSString*)uuid merchantId:(NSString*)merchantId lang:(NSString*)lang;
- (void) setToStage;
- (void) setLang:(NSString*) lang;
- (UIViewController *) openProfile:(UIViewController*)controller :(UIWindow*) window;
- (void) applicationDidEnterBackground:(UIApplication *)application;
- (void) applicationWillEnterForeground:(UIApplication *)application;
......
......@@ -36,6 +36,10 @@ NSString *LANG;
WARP_ERROR_DOMAIN = @"engage-stage.warp.ly";
}
- (void) setLang:(NSString*) lang {
LANG = lang;
}
- (UIViewController *) openProfile:(UIViewController*)controller :(UIWindow*) window {
UIViewController *profileViewController = [ProfileViewInterface profileViewController];
......