📄 tab_rss_readerappdelegate.m
字号:
//// TAB_RSS_readerAppDelegate.m// TAB RSS reader//// Created by Jason Terhorst on 7/28/08.// Copyright AstoundingCookie, LLC 2008. All rights reserved.//#import "TAB_RSS_readerAppDelegate.h"#import "RootViewController.h"@implementation TAB_RSS_readerAppDelegate@synthesize window;@synthesize navigationController;- (id)init { if (self = [super init]) { // } return self;}- (void)applicationDidFinishLaunching:(UIApplication *)application { // Configure and show the window [window addSubview:[navigationController view]]; [window makeKeyAndVisible];}- (void)applicationWillTerminate:(UIApplication *)application { // Save data if appropriate}- (void)dealloc { [navigationController release]; [window release]; [super dealloc];}@end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -