From aa55e1c075a64a02659340fd964e9b329cd15ffa Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichornlover@users.noreply.github.com> Date: Mon, 15 Apr 2024 19:04:17 -0500 Subject: [PATCH] Back arrow is invisible? --- Sources/AppIconOptionsController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/AppIconOptionsController.m b/Sources/AppIconOptionsController.m index 573c728..57ceb3f 100644 --- a/Sources/AppIconOptionsController.m +++ b/Sources/AppIconOptionsController.m @@ -23,7 +23,7 @@ self.tableView.delegate = self; [self.view addSubview:self.tableView]; - UIImage *backImage = [UIImage imageNamed:@"yt_outline_chevron_left_ios_24pt"]; + UIImage *backImage = [UIImage imageNamed:@"yt_outline_chevron_left_ios_24pt" inBundle:[NSBundle mainBundle] compatibleWithTraitCollection:nil]; UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithImage:backImage style:UIBarButtonItemStylePlain target:self action:@selector(back)]; self.navigationItem.leftBarButtonItem = backButton;