Update RootOptionsController.m

This commit is contained in:
aricloverEXALT 2025-01-13 05:09:07 -06:00 committed by GitHub
parent 6b59abb56b
commit 320ea35c59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,7 +103,7 @@
cell.imageView.image = [UIImage systemImageNamed:@"drop.fill"];
}
if (indexPath.row == 2) {
cell.textLabel.text = @"Reorder Pivot Bar Icons";
cell.textLabel.text = @"Reorder Notifications Bar";
cell.detailTextLabel.text = @"";
cell.imageView.image = [UIImage systemImageNamed:@"rectangle.grid.1x2.fill"];
}
@ -174,7 +174,7 @@
if (indexPath.row == 2) {
ReorderNotificationsBar *reorderNotificationsBarController = [[ReorderNotificationsBar alloc] init];
UINavigationController *reorderNotificationsBarControllerView = [[UINavigationController alloc] initWithRootViewController:reorderNotificationsBarController];
pivotBarReorderControllerView.modalPresentationStyle = UIModalPresentationFullScreen;
reorderNotificationsBarControllerView.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:reorderNotificationsBarControllerView animated:YES completion:nil];
}