Differences From Artifact [a1b1e36e46]:
- File
iOS/MainViewController.m
— part of check-in
[62ffb58d53]
at
2017-10-15 18:04:33
on branch trunk
— Use static ObjFW
Using a shared library causes iTunes Connect to fail without any error
message. (user: js, size: 2891) [annotate] [blame] [check-ins using]
To Artifact [7b5e60dc8a]:
- File iOS/MainViewController.m — part of check-in [6205c4feae] at 2017-11-26 19:19:07 on branch trunk — iOS: A few code modernizations (user: js, size: 2887) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
70 71 72 73 74 75 76 | dequeueReusableCellWithIdentifier: @"site"]; if (cell == nil) cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleDefault reuseIdentifier: @"site"] autorelease]; | | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | dequeueReusableCellWithIdentifier: @"site"]; if (cell == nil) cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleDefault reuseIdentifier: @"site"] autorelease]; cell.textLabel.text = self.sites[indexPath.row].NSObject; return cell; } - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText { self.sites = [_siteStorage sitesWithFilter: _searchBar.text.OFObject]; [_tableView reloadData]; } - (void)tableView: (UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath { [self performSegueWithIdentifier: @"showDetails" |
︙ | ︙ |