filetable.h

来自「iPhone development example: Tables.」· C头文件 代码 · 共 27 行

H
27
字号
#import <UIKit/UIKit.h>#import <UIKit/UISimpleTableCell.h>#import <UIKit/UIImageAndTextTableCell.h>#import <UIKit/UITableColumn.h>#import <UIKit/UIImage.h>#import <GraphicsServices/GraphicsServices.h>@interface FileTable : UITable{    NSString *path;    NSString *extension;    NSMutableArray *fileList;    UITableColumn *colFilename;    UITableColumn *colType;}- (id)initWithFrame:(struct CGRect)rect;- (void)setPath:(NSString *)_path;- (void)setExtension:(NSString *)_extension;- (void)reloadData;- (int)swipe:(int)type withEvent:(struct __GSEvent *)event;- (int)numberOfRowsInTable:(UITable *)_table;- (UITableCell *)table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col;- (void)_willDeleteRow:(int)row forTableCell:(id)cell viaEdge:(int)edge animateOthers:(BOOL)animate;- (void)dealloc;@end

⌨️ 快捷键说明

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