mirror of https://github.com/opa334/TrollStore.git
13 lines
346 B
Objective-C
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 |