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