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

📄 tab_rss_readerappdelegate.m

📁 iphone开发的一个程序展示
💻 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 + -