1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-04-12 15:23:13 +08:00
TrollStore/TrollStore/TSAppTableViewController.h
2022-10-30 00:45:30 +02:00

13 lines
346 B
Objective-C

#import <UIKit/UIKit.h>
#import "TSAppInfo.h"
@interface TSAppTableViewController : UITableViewController <UISearchResultsUpdating, UIDocumentPickerDelegate>
{
UIImage* _placeholderIcon;
NSArray<TSAppInfo*>* _cachedAppInfos;
NSMutableDictionary* _cachedIcons;
UISearchController* _searchController;
NSString* _searchKey;
}
@end