Swift 1.2新内容

Just when we thought Apple was busy working on more WatchKit and Xcode 6.2 betas – Xcode 6.3 beta and Swift 1.2 landed in our collective laps on Monday!

There are a ton of exciting changes in Swift 1.2. It’s still very much a beta,and only the inner circle at Apple know when it will be finalized,so it’s not a good idea to use it in any apps you’re planning on shipping anytime soon.

But it’s still good to keep up-to-date with the changes so you’re when they go live. In this article,I’ll highlight the most significant changes in Swift 1.2:

  • Speed improvements
  • Improved if-let optional binding
  • Changes to as when casting
  • Native Swift sets
  • Changes to initializing constants
  • Objective-C interop and bridging

And to tie it all together,I’ll try out the new Swift migrator tool to see just how well it converts a project written in Swift 1.1 to 1.2,and I’ll let you know how Swift 1.2 affects our tutorials books.

Remember,Swift 1.2 is beta software. The final Swift 1.2 release is still a good way away,and you can’t submit apps built with Xcode 6.3 beta to the store. So again,this isn’t something you’ll probably want to use yet,but it’s nice to keep track of what Apple has in mind for the language and the platform.

Let’s look into the future and get a sneak peek of what’s in store for us Swift developers!

Speed Improvements

Swift 1.2 brings several speed improvements to make both your apps and development even swifter!

  • Incremental Builds: Xcode no longer needs to recompile every single file in the project every time you build and run. The build system’s dependency manager is still pretty conservative,but you should see faster build times. This should be especially significant for larger projects.
  • Performance Enhancements:The standard library and runtime have been optimized; for example,the release notes point to speed ups in multidimensional array handling. You’ll need to benchmark your own apps since performance characteristics are so different between apps.

Swift code is already faster than Objective-C code in some cases,so it’s good to see continued improvement here!

if-let improvements

The aptly-named “pyramid of doom” is no more! Before Swift 1.2,you could only do optional binding on one thing at a time:

// Before Swift 1.2
if let data = widget.dataStream {
  if data.isValid {
    if let source = sourceIP() {
      if let dest = destIP() {
        // do something
      }
    }
  }
}

Now,you can test multiple optionals at once:

// After Swift 1.2
if let data = widget.data where data.isValid,let source = sourceIP(),dest = destIP() {
  // do something
}

Note the new where keyword that lets you test for boolean conditions inline. This makes your conditionals much more compact and will avoid all that extra indentation.

Upcasts and downcasts

The as keyword used to do both upcasts and downcasts:

// Before Swift 1.2
var aView: UIView = someView()

var object = aView as NSObject // upcast 

var specificView = aView as UITableView // downcast

The upcast,going from a derived class to a base class,can be checked at compile time and will never fail.

However,downcasts can fail since you can’t always be sure about the specific class. If you have aUIView,it’s possible it’s a UITableView or maybe a UIButton. If your downcast goes to the correct type –great! But if you happen to specify the wrong type,you’ll get a runtime error and the app will crash.

In Swift 1.2,downcasts must be either optional with as? or “forced failable” withas!. If you’re sure about the type,then you can force the cast withas! similar to how you would use an implicitly-unwrapped optional:

// After Swift 1.2
var aView: UIView = someView()

var tableView = aView as! UITableView

The exclamation point makes it absolutely clear that you know what you’re doing and that there’s a chance things will go terribly wrong if you’ve accidentally mixed up your types!

As always,as? with optional binding is the safest way to go:

// This isn't new to Swift 1.2,but is still the safest way
var aView: UIView = someView()

if let tableView = aView as? UITableView {
  // do something with tableView
}

Sets

Note: If you’re unfamiliar with sets,or data structures in general,check out our tutorial Collection Data Structures In Swift.

Swift 1.0 shipped with native strings,arrays and dictionaries bridged to NSString,NSArray and NSDictionary. The data structure nerds asked,“what happened to sets?”

Better late than never,native Swift sets are here! Like arrays and dictionaries,the newSet type is a struct with value semantics.

Like arrays,sets are generic collections so you need to provide the type of object to store; however,they store unique elements so you won’t see any duplicates.

If you’ve used NSSet before,you’ll feel right at home:

var dogs = Set<String>()

dogs.insert("Shiba Inu")
dogs.insert("Doge")
dogs.insert("Husky puppy")
dogs.insert("Schnoodle")
dogs.insert("Doge")

// prints "There are 4 known dog breeds"
println("There are \(dogs.count) known dog breeds")

You can do everything you would expect with Swift sets: check if a set contains a value,enumerate all the values,perform a union with another set,and so on.

This is a great addition to the standard library and fills a big abstraction hole where you still had to drop down toNSSet,which doesn’t feel very native in Swift. Hopefully,other missing types such asNSDate are next on the list to be Swift-ified. ;]

let constants

Constants are great for safety and ensuring things that shouldn’t change don’t change. OurSwift Style Guide even suggests this rule of thumb: “define everything as a constant and only change it to a variable when the compiler complains!”

One of the biggest problems with constants was that they had to be given a value when declared. There were some workarounds,ranging from just usingvar to using a closure expression to assign a value.

But in Swift 1.2,you can now declare a constant with let and assign its value some time in the future. You do have to give it a value before you access the constant of course,but this means you can now set the value conditionally:

let longEdge: CGFloat

if isLandscape {
  longEdge = image.calculateWidth()
} else {
  longEdge = image.calculateHeight()
}

// you can access longEdge from this point on

Any time using let is made easier,it’s a thumbs up for clearer,cleaner code with fewer possible side effects.

Objective-C interop

As Swift matures,the default classes will slowly shift towards the native Swift implementations. And that’s already happening!

In Swift 1.2,Objective-C classes that have native Swift equivalents (NSString,NSArray,NSDictionary etc.) are no longer automatically bridged. That means passing anNSString to a function that expects a String will now fail!

func mangleString(input: String) {
  // do something with input
}

let someString: NSString = "hello"

mangleString(someString) // compile error!

If you want to do this,you’ll need to be explicit with the type conversion:

mangleString(someString as String)

Again,Swift is becoming the first-class citizen here: basically,Swift strings will work whenever some kind of string (String orNSString) is expected. The only change here is when you have those oldNSString instances to work with.

Dealing with optionals

If you’ve been following all the changes to Swift until now,you’ve seen arguments change fromUIView to UIView! to UIView? and back again. We were spoiled with being able to messagenil in Objective-C,but Swift is much stricter about things.

If you’re maintaining Objective-C code,there are some new qualifiers for you to use when specifying the type for arguments,variables,properties,etc.:

  • nonnull –will never be nil
  • nullable –can be nil
  • null_unspecified –unknown whether it can be nil or not (the current default)

For example,consider how these Objective-C declarations would map to Swift:

  • nonnull NSString *string –a regular object,String
  • nullable NSString *string –this is an optional,String?
  • null_unspecified NSString *string –unknown,thus implicitly unwrapped,String!

If you don’t have Objective-C code to maintain,you’ll still benefit from Apple adding these qualifiers to the Cocoa headers. That will make your Swift experience that much cleaner with fewer implicitly-unwrapped values.

Swift migrator

Xcode 6.3 beta includes a Swift migrator to help automate some of these changes to Swift 1.2.

I made a copy of the official RWDevCon app project and opened it in Xcode 6.3 beta. How far would I get with a build and run?

There’s a new menu option: Edit\Convert\To Swift 1.2…. First you select a target and then it’s very similar to how refactoring works –Xcode will churn away and then come back with a preview. You’ll see the old code and new code side-by-side with the changes highlighted.

In this project,all the automated conversion did was suggest changing as toas! all over the place. There was one case of nil coalescing that the migrator didn’t understand:

let date = (data["metadata"] as NSDictionary?)?["lastUpdated"] as? NSDate ?? beginningOfTimeDate

That’s a pretty complicated expression! The migrator got confused and assumed there were two expressions there. The solution? A semicolon,of course!

let date = (data["metadata"] as! NSDictionary?)?["lastUpdated"] as? NSDate ??; beginningOfTimeDate

That’s some kind of syntax error that doesn’t compile. The other additions of as! made sense (and showed how much I rely on forced downcasts!) but this one line needed to be fixed manually.

Note: Your mileage may vary with the migrator on your own projects,of course. Feel free to share your experiences on our forums!

What does this mean for tutorial updates?

We’re very excited about these updates to Swift. However,we won’t start updating our tutorials,books,and videos until the gold master (GM) release of Xcode 6.3 and Swift 1.2 at the earliest.

To be updated sometime after the GM release of Xcode 6.3 and Swift 1.2 – stay tuned!

The team at Apple will continue to tweak things in future beta releases and in our experience,it’s best to wait until the GM to get a good sense of what will ship. We’ll still be keeping an eye on each new beta,and we can’t wait to have our tutorials be compatible with the final release version of Swift 1.2!

If you’ve purchased PDF versions of iOS 8 by Tutorials,Swift by Tutorials,or any book released after and includingiOS 7 by Tutorials,you’ll receive updated versions free of charge as and when they’re released. You’ll also see a note added to the top of our free tutorials stating which version of Xcode they’re compatible with.

Where to go from here?

Remember,Swift 1.2 is bundled with Xcode 6.3,which is still a beta – that means you can’t ship your apps with it yet! But you can try things out on a copy of your project and get a feel for how much work you’ll have to do after the final release.

In the meantime,why not try out the beta and see what you think about the changes to the language? You can always contribute back and file a radar with Apple to report a bug or make a feature request –there’s nothing quite like the thrill of having your radar marked as a duplicate,except perhaps when it gets marked as “fixed” and you see your radar number in the next set of release notes. ;]

What do you like or dislike about Swift 1.2 so far? Let us know in the forum discussion below!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。