美文网首页
iOS15导航栏设置

iOS15导航栏设置

作者: 烟雨酱南 | 来源:发表于2023-05-19 20:28 被阅读0次
        NSDictionary *dic = @{NSForegroundColorAttributeName:[UIColor blackColor],NSFontAttributeName:[UIFont systemFontOfSize:18 weight:(UIFontWeightSemibold)]};
        if (@available(iOS 15.0, *)) {
            UINavigationBarAppearance *barApp = [UINavigationBarAppearance new];
            barApp.backgroundColor = [UIColor whiteColor];
            barApp.titleTextAttributes = dic;
            barApp.backgroundEffect = nil;
            barApp.shadowColor = nil;
            self.navigationController.navigationBar.scrollEdgeAppearance = barApp;
            self.navigationController.navigationBar.standardAppearance = barApp;
        }else{
            self.navigationBar.barTintColor = [UIColor whiteColor];
            self.navigationBar.tintColor = [UIColor whiteColor];
            self.navigationBar.titleTextAttributes = dic;
        }
    

    相关文章

      网友评论

          本文标题:iOS15导航栏设置

          本文链接:https://www.haomeiwen.com/subject/fcensdtx.html