iOS15适配总结(持续更新)

前言:本文仅提供自己遇到的问题的一些解决方案,想了解更多api的变化可自行搜索。

1.UITableView 分组高度显示异常处理方案

UITableView分组高度默认增加22个像素的高度,导致所有的UI显示异常。

解决方案:

  • 全局设置(推荐)
    可以在 AppDelegate中直接全局设置生效,目前未发现不良影响
if (@available(iOS 15.0, *)) {
    [UITableView appearance].sectionHeaderTopPadding = 0;
}
  • 部分页面设置
    针对单独某个UITableView设置
if (@available(iOS 15.0, *)) {
    _tableView.sectionHeaderTopPadding = 0;
}
  • Runtime方式(仅提供方案,未验证)
    创建UITableView的分类,在+ (void)load方法中交换initWithFrame:,并增加如下代码
if (@available(iOS 15.0, *)) {
    _tableView.sectionHeaderTopPadding = 0;
}

2.导航栏显示异常处理方案

iOS15之前的系统,用到了设置导航栏背景颜色的处理,或设置某种颜色或透明或颜色变化,但是在iOS15上全部失效,导致导航栏显示异常。

解决方案:
创建UINavigationController分类,增加如下方法:

/// 设置导航栏颜色
-(void)setNavigationBackgroundColor:(UIColor *)color{
    NSDictionary *dic = @{NSForegroundColorAttributeName : [UIColor whiteColor],
                              NSFontAttributeName : [UIFont systemFontOfSize:18]};
    
    if (@available(iOS 15.0, *)) {
        // 滚动状态
        UINavigationBarAppearance *appearance = [[UINavigationBarAppearance alloc] init];
        // 设置为不透明
        appearance.backgroundEffect = nil;
        appearance.backgroundImage = [UIImage imageWithColor:color];
        appearance.shadowColor = color;
        appearance.backgroundColor = color;

        // 静止状态
        UINavigationBarAppearance *appearance2 = [[UINavigationBarAppearance alloc] init];
        // 设置为不透明
        appearance2.backgroundEffect = nil;
        appearance2.backgroundImage = [UIImage imageWithColor:color];
        appearance2.shadowColor = color;
        appearance2.backgroundColor = color;

        self.navigationBar.scrollEdgeAppearance = appearance;
        self.navigationBar.standardAppearance = appearance2;
    }else{
        self.navigationBar.titleTextAttributes = dic;
        [self.navigationBar setShadowImage:[[UIImage alloc] init]];
        [self.navigationBar setBackgroundImage:[UIImage imageWithColor:color] forBarMetrics:UIBarMetricsDefault];
    }
}

将原来iOS15之前的如下代码:

UIImage *image = [UIImage imageWithColor:color];
[self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:image];

修改为:

[self.navigationController setNavigationBackgroundColor:color];

其中color为当前导航栏的颜色,可根据项目实际情况设置颜色

3.为ProMotion设备配置高刷权限

iPhone 13 Pro、iPhone 13 Pro Max 和 iPad ProMotion 显示器能够在以下各项之间动态切换:
刷新率高达 120Hz,低至 24Hz 或 10Hz 的较慢刷新率。

目前在iPhone 13 Pro 或 iPhone 13 Pro Max 上非官方APP默认不支持120Hz刷新率,其实只需要在Plist上配置以下权限,就可以使用上高刷,而Pad Pro 不需要这种特殊配置,默认支持高刷。

CADisableMinimumFrameDurationOnPhone

你可能感兴趣的:(iOS15适配总结(持续更新))