rootviewcontroller.h

来自「iphone开发的一个程序展示」· C头文件 代码 · 共 36 行

H
36
字号
////  RootViewController.h//  TAB RSS reader////  Created by Jason Terhorst on 7/28/08.//  Copyright AstoundingCookie, LLC 2008. All rights reserved.//#import <UIKit/UIKit.h>@interface RootViewController : UITableViewController {		IBOutlet UITableView * newsTable;		UIActivityIndicatorView * activityIndicator;		CGSize cellSize;		NSXMLParser * rssParser;		NSMutableArray * stories;			// a temporary item; added to the "stories" array one at a time, and cleared for the next one	NSMutableDictionary * item;		// it parses through the document, from top to bottom...	// we collect and cache each sub-element value, and then save each item to our array.	// we use these to track each current item, until it's ready to be added to the "stories" array	NSString * currentElement;	NSMutableString * currentTitle, * currentDate, * currentSummary, * currentLink;}@end

⌨️ 快捷键说明

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