轻松解决iOS11适配工作及导航栏隐藏返回文字的问题

来源:爱站网时间:2021-07-01编辑:网友分享
对于一些遇到iOS11适配工作和导航栏隐藏返回文字的问题情况,爱站技术频道小编在下文已经通过示例代码详细介绍,具有一定的参考学习价值,大家一起来看看是如何轻松解决iOS11适配工作及导航栏隐藏返回文字的。

一、iOS11适配工作

这是一篇 WWDC Session 204 "Updating Your App for iOS 11" 的总结,里面的内容涉及到了产品、设计以及开发需要了解的内容。

在 "iPad" 以及 "iPhone 的 Landscape" 下, UITabBarItem 图片和文字并排排列了,并且长按 UITabBarItem 会有一个大的 HUD 显示在中间

通过设置 UIBarItem.largeContentSizeImage 可以设置 Tabbar 长按之后显示在中间的图片
(这个功能我在 Beta 2 中没有试出来,只能截取官方的图片)

iOS 11 为我们带来了 "Large Title",效果如下,当 "ScrollView" 向上滑动时,"Large Title" 会跟着改变, 效果如下:

"SearchBar" 被移植到了 "NavigationBar" 上面, 提供两种模式,一种是滚动后隐藏 searchBar(如上图), 另外一种就是保留 searchBar 在 Navigation 上。通过以下代码控制

navigationItem.hidesSearchBarWhenScrolling = false

UIToolbar, UINavigationBar 支持 Auto Layout

UIView.layoutMargins 被扩展到了 UIView.directionalLayoutMargins, 支持 Right to Left 语言(和我们关系不大,除非某天我们进军中东的某些国家了)。并且,这两个属性会互相同步

UIViewController 添加 systemMinimumLayoutMargins 属性(说实话,我们布局真的很少用到这个东西,不过可以作为了解)

新增 UIView.safeAreaLayoutGuide,同时废弃 UIViewController.topLayoutGuide UIViewController.bottomLayoutGuide。如果你之前处理过 UINavigationBar 的translucent,你就会发现 topLayoutGuide 的表现只能用差强人意来形容,希望这次新增的 safAreaLayoutGuide 能够彻底改变这个现状

///safeAreaLayoutGuide 取代 topLayoutGuide 的代码
//subview.topAnchor.constraint(equalTo: self.topLayoutGuide.bottomAnchor).isActive = true
subview.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true

蓝色区域即:UIView.safAreaLayoutGuide

UIScrollView 新增 adjustedContentInset

UIScrollView 新增 frameLayoutGuide 和 contentLayoutGuide, 目的是为了降低 ScrollView Auto Layout 的难度

UITabelViewCell 的 rowHeight 默认变成 UITableViewAutomaticDimension, 意味着自动算高会更普及了

UITableView 开放了 "Full Swipe", 就像删除邮件的操作一样

 func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
  return nil
 }

 func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
  let action = UIContextualAction(style: UIContextualAction.Style.destructive, title: "Delete") { (action, view, completionHandler) in
   self.tableView.beginUpdates()
   self.data.remove(at: indexPath.row)
   self.tableView.deleteRows(at: [indexPath], with: UITableViewRowAnimation.left)
   self.tableView.endUpdates()
   completionHandler(true)
  }
  let configuration = UISwipeActionsConfiguration(actions: [action])
  return configuration
 }

二、导航栏影藏返回文字的解决方法

如果要只保留返回按钮的文字,不需要"返回"文字

iOS11之前,在 全局函数执行的地方使用一下代码:

// barBtn.setBackButtonTitlePositionAdjustment( UIOffset(horizontal:0 , vertical: -70), for: .default) //设置取消返回按钮的字体 

iOS11之后,我的解决办法为,在push的父页面将title设为空

例如:

self.title = "" 
self.navigationController?.pushViewController(workDetail, animated: true) 

这样的话就需要在viewWillAppear方法中每次都设置控制器的title,不然就会导致返回这个页面的时候title不见的。

综合的解决办法,手动添加一个只含返回图标的button,然后在push到目的页面的时候添加。

总结

上文讲述的这篇轻松解决iOS11适配工作及导航栏隐藏返回文字的问题的内容,已经全部讲解完,大家可以关注爱站技术频道小编来了解更多精彩的IOS开发相关知识教程,谢谢大家的支持。

上一篇:IOS设计模式之原型模式在iOS开发中起到什么作用

下一篇:iOS-Mac远程连接如何控制Window

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载