XCode10 swift4.2 适配遇到的坑

以下是2018年10月23日更新

经过大约一个月的时间的适配,项目正式使用XCode10(以下简称为10 or XC10)大部分库都升级为Swift4.2(以下简称为 4.2 or S4.2),下面是适配过程中遇到的一些坑。

1. Swift4、Swift4.2混编

如果你对项目是小的独立项目,完全可以全部升级为4.2,你可以略过第一条;如果你依赖了一些第三方的库,且没有升级4.2,你可以继续看这一条。目前测试的结果来看,Swift4 和 S4.2的混编没有什么大的问题,如果你是通过cocoapod引入的可以在Podfile中加入如下代码:

swift_41_pod_targets = ['your_target_name']
post_install do |installer|installer.pods_project.targets.each do |target|if swift_41_pod_targets.include?(target.name)target.build_configurations.each do |config|config.build_settings['SWIFT_VERSION'] = '4.1'endendend
end
复制代码

2. NSDataAsset

升级XC10和S.2之前,项目里面有些对 'NSDataAsset' 的错误使用: 用‘NSDataAsset’读ImageAsset中的图片,这个是不正确的,但是却可以工作,这次升级修复了这个BUG。

正确的做法使用'DataAsset',然后才可以用‘NSDataAsset’读取数据,我由于不够认真且经验不足还以为是个BUG,给Apple提了个BUG。。。[捂脸]

3. 第三方库的重命名 typealias

为了方便的适配S4.2对UIKit中的重命名,有些第三方使用typealias对一些类型进行了重命名,以 RxSwift 为例子,RxSwift中就有如下代码:

#if swift(>=4.2)public typealias UIControlEvents = UIControl.Event  private
#endif
复制代码

这会导致一些重命名的类型即使不改也不会报错,但是一旦去掉了对某个库的依赖就会引入新的问题。

4.Delegate 的 Access Modifier

在升级S4.2过程中,XC偶尔会提示需要给某些Delegate方法添加 private修饰符,不要为了消除这个⚠️添加private,可能会导致Delegate永远不被调到;另外,如果是一个public或者openclass,协议方法记得也要加上public,否则会出一样的问题,具体原因我还在测试,但是现象是这样的,有新的见解欢迎评论区讨论。

5. 机型适配问题,iPhone XS Max字体变大

有些同事遇到XC9构建的安装包在iPhone XS Max上会有字体变大的情况,这个貌似是普遍现象,微信也有,使用XC10构建安装包可以解决这个问题,但是会遇到问题6

###6. iOS9.3以下系统Crash率飙升 使用XC10构建安装包可以解决问题5,但是iOS9.3以下的系统Crash到让你怀疑人生

以下是2018年9月18日内容

AVAudioSession.sharedInstance().setCategory()

disappeared

Swift 4.2 中 iOS10以下不能用 AVAudioSession.sharedInstance() setCategory

可选方案:
  • 使用OC实现该部分,然后使用Swift调用
  • 放弃 iOS9用户体验

参考地址

do {if #available(iOS 11.0, *) {try audioSession.setCategory(.playback, mode: .default, policy: .longForm, options: [])} else if #available(iOS 10.0, *) {try audioSession.setCategory(.playback, mode: .default, options: [])} else {// Compiler error: 'setCategory' is unavailable in Swifttry audioSession.setCategory(AVAudioSession.Category.playback)}
} catch let error {print("Unable to configure audio sesson category: \(error)")
}
复制代码

NSUnderlineStyle(.patternSolid、.none)

disappeared

可选方案:
  • .none

    mutableAttributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.none.rawValue, range: range) ^~~~~ 'none' is unavailable: use [] to construct an empty option set

Wrong: mutableAttributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: [], range: range) Right: mutableAttributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: 0, range: range)

  • 使用 CTUnderlineStyleModifiers

    // 没有测试 NSUnderlineStyle.init(rawValue: Int(CTUnderlineStyleModifiers.patternSolid.rawValue))

  • 使用其他默认值

下面是Rename操作

UIKit

#Swift4/UIKit

UITableViewCell

Swift 4Swift 4.2
UITableViewCellStyleUITableViewCell.CellStyle

UIEvent

Swift 4Swift 4.2
UIEventSubtypeUIEvent.EventSubtype

UITableView

Swift 4Swift 4.2
UITableViewScrollPositionUITableView.ScrollPosition
UITableViewAutomaticDimensionUITableView.automaticDimension
UITableViewCellEditingStyleUITableViewCell.EditingStyle
UITableViewRowAnimationUITableView.RowAnimation
UITableViewStyleUITableView.Style
UITableViewCellAccessoryTypeUITableViewCell.AccessoryType

UIControl

Swift 4Swift 4.2
UIControlEventsUIControl.Event

UIWindow

Swift 4Swift 4.2
UIWindowLevelAlertUIWindow.Level.alert
UIKeyboardFrameEndUserInfoKeyUIResponder.keyboardFrameEndUserInfoKey
UIKeyboardFrameBeginUserInfoKeyUIResponder.keyboardFrameBeginUserInfoKey
UIKeyboardAnimationDurationUserInfoKeyUIResponder.keyboardAnimationDurationUserInfoKey
UIKeyboardAnimationCurveUserInfoKeyUIResponder.keyboardAnimationCurveUserInfoKey
UIKeyboardIsLocalUserInfoKeyUIResponder.keyboardIsLocalUserInfoKey
UIWindowDidBecomeVisibleUIWindow.didBecomeVisibleNotification
UIWindowDidBecomeHiddenUIWindow.didBecomeHiddenNotification
UIWindowDidBecomeKeyUIWindow.didBecomeKeyNotification
UIWindowDidResignKeyUIWindow.didResignKeyNotification
UIKeyboardWillShowUIResponder.keyboardWillShowNotification
UIKeyboardDidShowUIResponder.keyboardDidShowNotification
UIKeyboardWillHideUIResponder.keyboardWillHideNotification
UIKeyboardDidHideUIResponder.keyboardDidHideNotification

UIViewController

Swift 4Swift 4.2
open func addChildViewController(_ childController: UIViewController)open func addChild(_ childController: UIViewController)
open func willMove(toParentViewController parent: UIViewController?)open func willMove(toParent parent: UIViewController?)
open func didMove(toParentViewController parent: UIViewController?)open func didMove(toParent parent: UIViewController?)
open func removeFromParentViewController()open func removeFromParent()

UIActivity

Swift 4Swift 4.2
UIActivityTypeUIActivity.ActivityType

UIActivityIndicatorView

Swift 4Swift 4.2
activityIndicator.activityIndicatorViewStyleactivityIndicator.style

UIAlertController

Swift 4Swift 4.2
UIAlertActionStyleUIAlertAction.Style
UIAlertControllerStyleUIAlertController.Style

UIPageViewController

Swift 4Swift 4.2
UIPageViewControllerNavigationDirectionUIPageViewController.NavigationDirection
UIPageViewControllerSpineLocationUIPageViewController.SpineLocation
UIPageViewControllerNavigationOrientationUIPageViewController.NavigationOrientation
UIPageViewControllerTransitionStyleUIPageViewController.TransitionStyle
UIPageViewControllerOptionsKeyUIPageViewController.OptionsKey

UINavigationController

Swift 4Swift 4.2
UINavigationControllerOperationUINavigationController.Operation

UIGestureRecognizer

Swift 4Swift 4.2
UIGestureRecognizerStatePossibleUIGestureRecognizer.State.possible
UIGestureRecognizerStateBeganUIGestureRecognizer.State.began
UIGestureRecognizerStateChangedUIGestureRecognizer.State.changed
UIGestureRecognizerStateEndedUIGestureRecognizer.State.ended
UIGestureRecognizerStateCancelledUIGestureRecognizer.State.cancelled
UIGestureRecognizerStateFailedUIGestureRecognizer.State.failed
UIGestureRecognizerStateRecognizedUIGestureRecognizer.State.recognized

NSLayoutFormat

Swift 4Swift 4.2
NSLayoutFormatOptionsNSLayoutConstraint.FormatOptions

UIEdgeInsets

Swift 4Swift 4.2
public func UIEdgeInsetsMake(_ top: CGFloat, _ left: CGFloat, _ bottom: CGFloat, _ right: CGFloat) -> UIEdgeInsetsUIEdgeInsets(top: CGFloat, left: CGFloat, bottom: CGFloat, right: CGFloat)
public func UIEdgeInsetsInsetRect(_ rect: CGRect, _ insets: UIEdgeInsets) -> CGRectpublic func inset(by insets: UIEdgeInsets) -> CGRect

UIFontDescriptor

Swift 4Swift 4.2
UIFontDescriptorSymbolicTraitsUIFontDescriptor.SymbolicTraits

UIImage

Swift 4Swift 4.2
UIKIT_EXTERN NSData * __nullable UIImagePNGRepresentation(UIImage * __nonnull image);public func pngData() -> Data?
NSData * __nullable UIImageJPEGRepresentation(UIImage * __nonnull image, CGFloat compressionQuality);public func jpegData(compressionQuality: CGFloat) -> Data?

UIApplication

Swift 4Swift 4.2
UIApplicationDidEnterBackgroundUIApplication.didEnterBackgroundNotification
UIApplicationWillEnterForegroundUIApplication.willEnterForegroundNotification
UIApplicationDidFinishLaunchingUIApplication.didFinishLaunchingNotification
UIApplicationDidBecomeActiveUIApplication.didBecomeActiveNotification
UIApplicationWillResignActiveUIApplication.willResignActiveNotification
UIApplicationDidReceiveMemoryWarningUIApplication.didReceiveMemoryWarningNotification
UIApplicationWillTerminateUIApplication.willTerminateNotification
UIApplicationSignificantTimeChangeUIApplication.significantTimeChangeNotification
UIApplicationWillChangeStatusBarOrientationUIApplication.willChangeStatusBarOrientationNotification
UIApplicationDidChangeStatusBarOrientationUIApplication.didChangeStatusBarOrientationNotification
UIApplicationDidChangeStatusBarFrameUIApplication.didChangeStatusBarFrameNotification
UIApplicationBackgroundRefreshStatusDidChangeUIApplication.backgroundRefreshStatusDidChangeNotification
UIApplicationProtectedDataWillBecomeUnavailableUIApplication.protectedDataWillBecomeUnavailableNotification
UIApplicationProtectedDataDidBecomeAvailableUIApplication.protectedDataDidBecomeAvailableNotification
UIApplicationUserDidTakeScreenshotUIApplication.userDidTakeScreenshotNotification
UIApplicationOpenSettingsURLStringUIApplication.openSettingsURLString
UIApplicationLaunchOptionsKeyUIApplication.LaunchOptionsKey
UIInterfaceOrientationIsLandscape()UIApplication.shared.statusBarOrientation.isLandscape

UIView

Swift 4Swift 4.2
func bringSubview(toFront view: UIView)func bringSubviewToFront(_ view: UIView)
UIViewAnimationOptionsUIView.AnimationOptions()

Foundation

NSAttributedString

Swift 4Swift 4.2
NSAttributedStringKeyNSAttributedString.Key

QuartzCore

CAShapeLayer

Swift 4Swift 4.2
kCALineCapRoundCAShapeLayerLineCap.round
kCALineCapButtCAShapeLayerLineCap.butt
kCALineCapSquareCAShapeLayerLineCap.square
kCALineJoinMiterCAShapeLayerLineJoin.miter
kCALineJoinRoundCAShapeLayerLineJoin.round
kCALineJoinBevelCAShapeLayerLineJoin.bevel
kCAFillRuleNonZeroCAShapeLayerFillRule.nonZero
kCAFillRuleEvenOddCAShapeLayerFillRule.evenOdd

参考资料

Swift-Migration-4.2

转载于:https://juejin.im/post/5ba0dfb9e51d450e4a1babcb

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/450669.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

学生管理系统Java版

简单的学生管理系统 主界面编写: 1.用输出语句完成主界面的编写 2.用Scanner语句实现键盘的录入 3.用swich语句完成操作的选择 4.用循环完成再次回到主界面 代码实现: while (true) {//1.用输出语句完成主界面的编写System.out.println("--------…

dubbo 配置文件详解

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 一、dubbo常用配置 <dubbo:service/> 服务配置&#xff0c;用于暴露一个服务&#xff0c;定义服务的元信息&#xff0c;一个服务可…

ASP.NET Core 实战:Linux 小白的 .NET Core 部署之路

一、前言 最近一段时间自己主要的学习计划还是按照毕业后设定的计划&#xff0c;自己一步步的搭建一个前后端分离的 ASP.NET Core 项目&#xff0c;目前也还在继续学习 Vue 中&#xff0c;虽然中间断了很长时间&#xff0c;好歹还是坚持下来了&#xff0c;嗯&#xff0c;看了看…

学以致用十三-----Centos7.2+python3+YouCompleteMe成功历程

历经几天的摸索&#xff0c;趟过几趟坑之后&#xff0c;终于完成YouCompleteMe的安装配置。 今天同样是个不能忘记的日子&#xff0c;国耻日&#xff0c;勿忘国耻。&#xff08;9.18&#xff09; 服务器安装好&#xff0c;基本配置配置好后&#xff0c;开始安装。 一、检查服务…

VC画图用到的主要方法

1。鼠标落下&#xff0c;记录鼠标的起始位置 void CMyEasyDrawView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: 在此添加消息处理程序代码和/或调用默认值 //graph->m_nTypedlg-> m_bStartDraw true; m_PtPress m_PtLast point; CView::OnLButtonDown…

【最新版】Java学习路线(含B站口碑推荐视频链接)

文章目录关于如何自学一、计算机网络二、数据结构与算法三、操作系统四、计算机组成原理五、编译原理六、设计模式七、MySQL八、实操工具九、JAVA并发与JVM十、Redis十一、Linux十二、Java路线学习尚硅谷黑马程序员动力节点狂神说十三、Java基础十四、JavaWeb十五、框架十六、微…

记录no static method cannot be reference

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 报错如题&#xff1a; no static method cannot be reference 我一直以为是在静态方法中调用了非静态方法&#xff0c;实际上只是我在注…

文件存储权限

Android 6.0及以上&#xff0c;需要动态申请权限&#xff1a; Manifest.permission.READ_EXTERNAL_STORAGE Manifest.permission.WRITE_EXTERNAL_STORAGE <uses-permission-sdk-23 android:name"android.permission.WRITE_EXTERNAL_STORAGE" /><uses-permis…

从工具的奴隶到工具的主人

摘要&#xff1a;我们每个人都是工具的奴隶。随着我们的学习&#xff0c;我们不断的加深自己对工具的认识&#xff0c;从而从它们里面解脱出来。现在我就来说一下我作为各种工具的奴隶&#xff0c;以及逐渐摆脱它们的思想控制的历史吧。 当我高中毕业进入大学计算机系的时候&am…

记录A component required a bean named ‘studentService‘ that could not be found.

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 报错如题&#xff1a; A component required a bean named studentService that could not be found. 出问题的代码行&#xff1a; &l…

Java---利用程序实现在控制台聊天

一.普通版&#xff08;不能实现随意输入&#xff09; 电脑A(服务器端) package day; import java.net.ServerSocket; import java.net.Socket; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Scanner;public class Mysever {public static void…

16.看板方法——三类改进机会笔记

00.三种常见的模型和它们一些变种&#xff1a;约束理论及其主要理念&#xff1b;还有聚焦于分析和减少变异性的模型及其变种等。 01.五步聚焦法 *a.识别约束 *b.作出决定&#xff0c;以最大化利用约束 *c.使系统中的其余一切部分都服从于b中做出决定 *d.突破约束 *e.避免惰性&a…

C/C++的64位整型

在C/C中&#xff0c;64为整型一直是一种没有确定规范的数据类型。现今主流的编译器中&#xff0c;对64为整型的支持也是标准不一&#xff0c;形态各异。一般来说&#xff0c;64位整型的定义方式有long long和__int64两种(VC还支持_int64)&#xff0c;而输出到标准输出方式有pri…

记录 Duplicate spring bean id dubbo

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 启动工程 报错如题&#xff1a; Duplicate spring bean id dubbo &#xff0c;意思是id 重复。 原因是我在加载配置文件时加载了两个…

1.KafKa-介绍

转载于:https://www.cnblogs.com/v-lcc/p/9674975.html

关于日志的123

写在前面&#xff1a; 关于日志其实有很多想说的&#xff0c;不过将自己整理的文档转化为Blog还是比较花时间的&#xff0c;偶有疏漏&#xff0c;请多包涵。 本篇文章所讲均只止于Java。 日志的作用&#xff1a; 1.定位问题&#xff0c;对于一个系统而言&#xff0c;总是会有些…

研究显示每天工作超8小时得心脏病概率增加80%,生命很重要,工作不要那个累。

每天工作超过8小时的人患心脏病的风险最高可增加80%(资料图) 据英国《每日邮报》9月12日报道&#xff0c;芬兰职业保健研究所的科学家们近日进行了一项研究&#xff0c;他们发现每天工作超过8小时的人患心脏病的风险最高可增加80%。 研究人员表示&#xff0c;长时间的工作是许多…

SVN介绍

1.SVN介绍SVN是一个跨平台的开源的版本控制系统&#xff0c;svn版本管理工具管理着随时间改变的各种数据&#xff0c;这些数据放置在一个中央档案库&#xff08;repository&#xff09;中&#xff0c;svn会备份并记录每个文件每一次的修改、更新、变动。这样可以把任意一个时间…

记录 Annotation processing is not supported for module cycles.

报错&#xff1a;Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [A,B] are excluded from annotation processing 我是想启动两个 maven工程&#xff0c;相互作为服务提供方和消费方&#xff0c;于是在p…

沉淀再出发:Spring的架构理解

沉淀再出发:Spring的架构理解 一、前言 在Spring之前使用的EJB框架太庞大和重量级了&#xff0c;开发成本很高&#xff0c;由此spring应运而生。关于Spring&#xff0c;学过java的人基本上都会慢慢接触到&#xff0c;并且在面试的时候也是经常遇到的&#xff0c;因为这个技术极…