mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-21 11:52:00 +00:00
Update AppIconOptionsController.m
This commit is contained in:
parent
cfb8ed01f1
commit
8059d6f47e
1 changed files with 1 additions and 2 deletions
|
|
@ -17,7 +17,6 @@
|
||||||
[super viewDidLoad];
|
[super viewDidLoad];
|
||||||
|
|
||||||
self.selectedIconIndex = 0;
|
self.selectedIconIndex = 0;
|
||||||
self.defaultIconIndex = 0;
|
|
||||||
|
|
||||||
self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
|
self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
|
||||||
self.tableView.dataSource = self;
|
self.tableView.dataSource = self;
|
||||||
|
|
@ -63,7 +62,7 @@
|
||||||
if (!cell) {
|
if (!cell) {
|
||||||
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
|
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
|
||||||
}
|
}
|
||||||
NSArray<NSString *> *sortedIcons = [self sortedAppIcons];
|
[self sortedAppIcons]
|
||||||
NSString *iconPath = self.appIcons[indexPath.row];
|
NSString *iconPath = self.appIcons[indexPath.row];
|
||||||
cell.textLabel.text = [iconPath.lastPathComponent stringByDeletingPathExtension];
|
cell.textLabel.text = [iconPath.lastPathComponent stringByDeletingPathExtension];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue