Post

Replies

Boosts

Views

Activity

Reply to barTintColor not working in iOS 15
In order to change it everywhere put this code into didFinishLaunchingWithOptions: if (@available(iOS 15.0, *)) {     UINavigationBarAppearance *appearance = [[UINavigationBarAppearance alloc] init];     [appearance setBackgroundColor:[UIColor grayColor]];     [[UINavigationBar appearance] setScrollEdgeAppearance:appearance];     [[UINavigationBar appearance] setStandardAppearance:appearance];     [[UINavigationBar appearance] setTintColor:[UIColor grayColor]];   }
Topic: UI Frameworks SubTopic: UIKit Tags:
Nov ’21
Reply to barTintColor not working in iOS 15
In order to change it everywhere put this code into didFinishLaunchingWithOptions: if (@available(iOS 15.0, *)) {     UINavigationBarAppearance *appearance = [[UINavigationBarAppearance alloc] init];     [appearance setBackgroundColor:[UIColor grayColor]];     [[UINavigationBar appearance] setScrollEdgeAppearance:appearance];     [[UINavigationBar appearance] setStandardAppearance:appearance];     [[UINavigationBar appearance] setTintColor:[UIColor grayColor]];   }
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to Xcode 13 strange behaviour about CFBundleVersion after uploading to appstoreconnect
Thank you Scott, this sounds reasoning... But I can't see the option automatic build number  when uploading. Anyway, at this point I think someone should update the documentation about CFBundleVersion, right?
Replies
Boosts
Views
Activity
Oct ’21