NavigationBar 颜色及背景失效
iOS 15上发现,指定的背景色失效了,但滚动控制器的视图时,导航条的背景又出现了。
As of iOS 15, UINavigationBar, UIToolbar, and UITabBar will use their scrollEdgeAppearance when your view controller’s associated scroll view is at the appropriate edge (or always if you don’t have a UIScrollView in your hierarchy, more on that below).
从 iOS 15 开始,UINavigationBar、UIToolbar 和 UITabBar 将在您的视图控制器的关联滚动视图位于适当的边缘时使用它们的 scrollEdgeAppearance(或者总是如果您的层次结构中没有 UIScrollView,更多内容见下文)。
You must adopt the UIBarAppearance APIs (available since iOS 13, specializations for each bar type) to customize this behavior. UIToolbar and UITabBar add scrollEdgeAppearance properties for this purpose in iOS 15.
您必须采用 UIBarAppearance API(自 iOS 13 起可用,针对每种条形类型进行了专门化)来自定义此行为。 UIToolbar 和 UITabBar 为此在 iOS 15 中添加了 scrollEdgeAppearance 属性。
相关修改如下:
1 | if (@available(iOS 13.0, *)) { |
UITabBar 背景图失效
UITabBar之前设置的背景图片,老版本可以,iOS 15上表现为空白。
新的API:
1 | @property (nonatomic, readwrite, copy, nullable) UITabBarAppearance *scrollEdgeAppearance; //ios 15.0. |
相关代码修改如下:
1 | UIImage *img = [UIImage imageNamed:@"image"]; |
UITabBarItem 文字颜色失效
新版本中UITabBarItem文字颜色的修改不起作用。
兼容新的 API :
1 | @property (nonatomic, readwrite, copy, nullable) UITabBarAppearance *scrollEdgeAppearance; //ios 15.0. |
相关代码修改
1 | if (@available(iOS 13.0, *)) { |
UITableView
iOS15 UITableView新增了一个新属性:sectionHeaderTopPadding,默认值为automaticDimension,此属性会给每一个 section header 增加一个默认高度,当我们使用UITableViewStylePlain 初始化tableView的时候,系统默认给 section header 增高了22像素。解决方案是调整sectionHeaderTopPadding属性设置,有需要隐藏头部设置为0即可:
1 | if (@available(iOS 15.0, *)) { |
##
UIButton
UIButton支持更多配置。UIButton.Configuration是一个新的结构体,它指定按钮及其内容的外观和行为。它有许多与按钮外观和内容相关的属性,如cornerStyle、baseForegroundColor、baseBackgroundColor、buttonSize、title、image、subtitle、titlePadding、imagePadding、contentInsets、imagePlacement等。
相关代码:
1 | UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; |
##
UIImage
图片的尺寸变换,相关代码
1 | UIImage *modeImg = [UIImage imageNamed:@"bgImage.png"]; |
##
UISheetPresentationController
增加UISheetPresentationController,通过它可以控制 Modal 出来的 UIViewController 的显示大小,且可以通过拖拽手势在不同大小之间进行切换。
1 | if let presentationController = presentationController as? UISheetPresentationController { |
CLLocationButton
推出CLLocationButton用于一次性定位授权,该内容内置于CoreLocationUI模块,但如果需要获取定位的详细信息仍然需要借助于CoreLocation。
URLSession
URLSession 推出支持 async/await 的 API,包括获取数据、上传与下载