⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ___projectnameasidentifier___appdelegate.m

📁 simpe empty opengl application project for iphone
💻 M
字号:
////  ___PROJECTNAMEASIDENTIFIER___AppDelegate.m//  ___PROJECTNAME___////  Created by ___FULLUSERNAME___ on ___DATE___.//  Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.//#import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h"#import "GLViewController.h"#import "GLView.h"@implementation ___PROJECTNAMEASIDENTIFIER___AppDelegate@synthesize window;@synthesize controller;- (void)applicationDidFinishLaunching:(UIApplication*)application{	CGRect	rect = [[UIScreen mainScreen] bounds];		window = [[UIWindow alloc] initWithFrame:rect];		GLViewController *theController = [[GLViewController alloc] init];	self.controller = theController;	[theController release];		GLView *glView = [[GLView alloc] initWithFrame:rect];	[window addSubview:glView];	glView.controller = controller;	glView.animationInterval = 1.0 / kRenderingFrequency;	[glView startAnimation];	[glView release];		[window makeKeyAndVisible];}- (void)dealloc{	[window release];	[controller release];	[super dealloc];}@end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -