📄 rootviewcontroller.h
字号:
//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -