Swift 4.0迁移及iPhone X适配初体验

iPhone X发布了,价格感人,但总有土豪会买。有人用就得适配,个人感觉,齐刘海不丑。

Swift 4.0迁移及iPhone X适配初体验_第1张图片
美吗?

下载Xcode 9

    苹果开发者网站可以下载Xcode9 GM版本了,如果要保留Xcode8,需要先把Xcode.app修改为Xcode8.app,然后再安装Xcode9,这样就可以同时拥有两个版本了。

Swift 4.0 迁移

    首先,第三方库要支持Swift 4.0。

    对于业务代码,选择菜单“Edit > Convert > To Current Swift Syntax...”,竟然没有当前项目的选项,只能选择Test项目。作罢,直接编译,有错就改吧。————————————————————————————————————

【错误一】Argument of '#selector' refers to instance method 'XXXXXXX' that is not exposed to Objective-C

【解决方法】聪明的Xcode也给出了提示——Add '@objc' to expose this instance method to Objective-C,直接点击fix按钮,Xcode自动修改问题。————————————————————————————————————

【错误二】'NSFontAttributeName' has been renamed to 'NSAttributedStringKey.font'

【解决方法】一些类被重新命名,Xcode提示——Replace 'NSFontAttributeName' with 'NSAttributedStringKey.font',直接点击fix按钮,一直点、点、点......手残了......————————————————————————————————————

【错误三】Cannot convert value of type 'NSAttributedString.DocumentAttributeKey' to expected dictionary key type 'NSAttributedString.DocumentReadingOptionKey'

错误代码

【解决方法】将[NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],改为[NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html]———————————————————————————————————

【错误四】'priority' produces 'ConstraintMakerFinalizable', not the expected contextual result type 'Void'

Swift 4.0迁移及iPhone X适配初体验_第2张图片
错误代码

【解决方法】将UILayoutPriorityDefaultHigh,修改为UILayoutPriority.defaultHigh.rawValue。同理,根据错误替换其他的枚举项,包括UILayoutPriority.required.rawValue、UILayoutPriority.defaultLow.rawValue。———————————————————————————————————

【错误五】其实是个警告:'substring(from:)' is deprecated: Please use String slicing subscript with a 'partial range from' operator.

【解决方法】substring被废弃,使用下标来截取字符串。

例如rgba.substring(from: index)改为String(rgba[index...])。———————————————————————————————————

iPhone X适配

      改完所有错误,编译运行,齐刘海迎面而来,竟然适配的如此完美。明显的问题只发现一处,左上角的返回按钮,点击无响应。

Swift 4.0迁移及iPhone X适配初体验_第3张图片
左上角按钮不响应

      将按钮往下调整30个点,点击可以正常响应了。由此推断,应该是左上角的太阳穴位置,不响应手势了。

      iPhone X,余生请多指教!

你可能感兴趣的:(Swift 4.0迁移及iPhone X适配初体验)