在iOS15系統(tǒng)及以上設(shè)置導(dǎo)航欄背景顏色
UINavigationBarAppearance *navigationBarAppearance = [[UINavigationBarAppearance alloc] init];
navigationBarAppearance.backgroundColor = [UIColor blueColor];
navigationBarAppearance.titleTextAttributes = @{
NSForegroundColorAttributeName : [UIColor whiteColor],
NSFontAttributeName : [UIFont systemFontOfSize:15]
};
self.navigationController.navigationBar.standardAppearance = navigationBarAppearance;
self.navigationController.navigationBar.scrollEdgeAppearance = navigationBarAppearance;