ameba-sdk-gcc-make/tools/simple_config_wizard/iOS/SimpleConfigWizard_v104/SimpleConfig/RTKAppDelegate.m
2016-06-04 19:09:35 +08:00

85 lines
3.3 KiB
Objective-C
Executable file

//
// RTKAppDelegate.m
// SimpleConfig
//
// Created by realtek on 6/16/14.
// Copyright (c) 2014 Realtek. All rights reserved.
//
#import "RTKAppDelegate.h"
#import "RTKViewController.h"
@implementation RTKAppDelegate
@synthesize window = _window;
@synthesize viewController = _viewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
#if USE_ORIGIN_VIEW_METHOD
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
self.viewController = [[RTKViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil];
} else {
self.viewController = [[RTKViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil];
}
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
#endif
return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
NSLog(@"enter background!");
[self.viewController.mySimpleConfig.pattern.udpSocket close];
exit(0);
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
NSError *err = nil;
self.viewController.mySimpleConfig.pattern.udpSocket = [[AsyncUdpSocket alloc]initWithDelegate:self];
[self.viewController.mySimpleConfig.pattern.udpSocket bindToPort:MCAST_PORT_NUM error:&err];
[self.viewController.mySimpleConfig.pattern.udpSocket enableBroadcast:YES error:&err];
#if USE_AUTO_SSID
NSDictionary *ifs = [self.viewController.mySimpleConfig.pattern fetchSSIDInfo];
NSString *auto_ssid = [ifs objectForKey:@"SSID"];
if (auto_ssid == nil) {
auto_ssid = @"";
}
self.viewController.mySSID.text = auto_ssid;
#endif
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
@end