Back arrow is invisible?

This commit is contained in:
arichornlover 2024-04-15 19:04:17 -05:00 committed by GitHub
parent 990538c505
commit aa55e1c075
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;