Button_FunAppDelegate.m
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:
iPhone
开发平台:
MultiPlatform
- //
- // Button_FunAppDelegate.m
- // Button Fun
- //
- // Created by Jeff LaMarche on 6/13/08.
- // Copyright __MyCompanyName__ 2008. All rights reserved.
- //
- #import "Button_FunAppDelegate.h"
- #import "Button_FunViewController.h"
- @implementation Button_FunAppDelegate
- @synthesize window;
- @synthesize viewController;
- - (void)applicationDidFinishLaunching:(UIApplication *)application {
- // Override point for customization after app launch
- [window addSubview:viewController.view];
- [window makeKeyAndVisible];
- }
- - (void)dealloc {
- [viewController release];
- [window release];
- [super dealloc];
- }
- @end