| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- //
- // FLEXLibrariesTableViewController.m
- // Flipboard
- //
- // Created by Ryan Olson on 2014-05-02.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import "FLEXLibrariesTableViewController.h"
- #import "FLEXUtility.h"
- #import "FLEXClassesTableViewController.h"
- #import <objc/runtime.h>
- @interface FLEXLibrariesTableViewController () <UISearchBarDelegate>
- @property (nonatomic, strong) NSArray *imageNames;
- @property (nonatomic, strong) NSArray *filteredImageNames;
- @property (nonatomic, strong) UISearchBar *searchBar;
- @end
- @implementation FLEXLibrariesTableViewController
- - (id)initWithStyle:(UITableViewStyle)style
- {
- self = [super initWithStyle:style];
- if (self) {
- [self loadImageNames];
- }
- return self;
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- self.searchBar = [[UISearchBar alloc] init];
- self.searchBar.delegate = self;
- self.searchBar.placeholder = [FLEXUtility searchBarPlaceholderText];
- [self.searchBar sizeToFit];
- self.tableView.tableHeaderView = self.searchBar;
- }
- #pragma mark - Binary Images
- - (void)loadImageNames
- {
- unsigned int imageNamesCount = 0;
- const char **imageNames = objc_copyImageNames(&imageNamesCount);
- if (imageNames) {
- NSMutableArray *imageNameStrings = [NSMutableArray array];
- NSString *appImageName = [FLEXUtility applicationImageName];
- for (unsigned int i = 0; i < imageNamesCount; i++) {
- const char *imageName = imageNames[i];
- NSString *imageNameString = [NSString stringWithUTF8String:imageName];
- // Skip the app's image. We're just showing system libraries and frameworks.
- if (![imageNameString isEqual:appImageName]) {
- [imageNameStrings addObject:imageNameString];
- }
- }
-
- // Sort alphabetically
- self.imageNames = [imageNameStrings sortedArrayWithOptions:0 usingComparator:^NSComparisonResult(NSString *name1, NSString *name2) {
- NSString *shortName1 = [self shortNameForImageName:name1];
- NSString *shortName2 = [self shortNameForImageName:name2];
- return [shortName1 caseInsensitiveCompare:shortName2];
- }];
-
- free(imageNames);
- }
- }
- - (NSString *)shortNameForImageName:(NSString *)imageName
- {
- NSString *shortName = nil;
- NSArray *components = [imageName componentsSeparatedByString:@"/"];
- NSUInteger componentsCount = [components count];
- if (componentsCount >= 2) {
- shortName = [NSString stringWithFormat:@"%@/%@", components[componentsCount - 2], components[componentsCount - 1]];
- }
- return shortName;
- }
- - (void)setImageNames:(NSArray *)imageNames
- {
- if (![_imageNames isEqual:imageNames]) {
- _imageNames = imageNames;
- self.filteredImageNames = imageNames;
- }
- }
- #pragma mark - Filtering
- - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
- {
- if ([searchText length] > 0) {
- NSPredicate *searchPreidcate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
- BOOL matches = NO;
- NSString *shortName = [self shortNameForImageName:evaluatedObject];
- if ([shortName rangeOfString:searchText options:NSCaseInsensitiveSearch].length > 0) {
- matches = YES;
- }
- return matches;
- }];
- self.filteredImageNames = [self.imageNames filteredArrayUsingPredicate:searchPreidcate];
- } else {
- self.filteredImageNames = self.imageNames;
- }
- [self.tableView reloadData];
- }
- - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
- {
- [searchBar resignFirstResponder];
- }
- #pragma mark - Table View Data Source
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- {
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- return [self.filteredImageNames count];
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- static NSString *CellIdentifier = @"Cell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
- cell.textLabel.font = [FLEXUtility defaultTableViewCellLabelFont];
- }
-
- NSString *fullImageName = self.filteredImageNames[indexPath.row];
- cell.textLabel.text = [self shortNameForImageName:fullImageName];
-
- return cell;
- }
- #pragma mark - Table View Delegate
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- FLEXClassesTableViewController *classesViewController = [[FLEXClassesTableViewController alloc] init];
- classesViewController.binaryImageName = self.filteredImageNames[indexPath.row];
- [self.navigationController pushViewController:classesViewController animated:YES];
- }
- @end
|