tab_rss_readerappdelegate.m
来自「iphone开发的一个程序展示」· M 代码 · 共 47 行
M
47 行
//// 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 + =
减小字号Ctrl + -
显示快捷键?