📄 ___projectnameasidentifier___appdelegate.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 + -