What's new in Swift 2.2

Fromhttps://www.hackingwithswift.com/swift2-2

Swift 2.2 is almost here,and cleans up a numberof quirks,adds some missing features,and deprecates – perhaps controversially –some language features. This article goes over all the major changes,along with several minor ones,and gives you practical code examples so you can get up and running straight away.

If you liked this article,you might also want to read:

Watch my Swift 2.2 video

I made a video going over the key new features in Swift 2.2. You can read the original article below,or watch this video for my lightning summary. Feedback?Find me on Twitter @twostraws.

++ and -- are deprecated

Swift 2.2 formally deprecates the++and--operators,which means they still work but you'll get a warning when you use them. Deprecation is usually a first step towards removing something entirely,and in this case both of these operators will be removed in Swift 3.0.

In their place,you need to use+= 1and-= 1instead. These operators have been there all along,and are not going away.

You might wonder why two long-standing operators are being removed,particularly when they exist in C,C#,Java,and – critically to its "joke" –C++. There are several answers,not least:

  1. Writing++rather than+= 1is hardly a dramatic time saving
  2. Although it's easy once you know it,++doesn't have an obvious meaning to people learning Swift,whereas+=at least reads as "add and assign."
  3. C-style loops – one of the most common situations where--were used – have also been deprecated,which brings me on to my next point…

Traditional C-style for loops are deprecated

Yes,you read that correctly: loops like the below will soon be removed entirely from Swift:

for var i = 1; i <= 10; i += 1 {
    print("\(i) green bottles")
}

These are called C-style for loops because they have long been a feature of C-like languages,and conceptually even pre-date C by quite a long way.

Although Swift is (just about!) a C-like language,it has a number of newer,smarter alternatives to the traditional for loop. The result: this construct has been deprecated in Swift 2.2 and will be removed "in a future version of Swift."

Note: the current deprecation warning does not say it's removed in Swift 3.0,although I suspect it will be.

To replace these old for loops,use one of the many alternatives. For example,the "green bottles" code above could be rewritten to loop over a range,like this:

for i in 1...10 {
    print("\(i) green bottles")
}

Remember,though,that it's a bad idea to create a range where the start is higher than the end: your code will compile,but it will crash at runtime. So,rather than writing this:

for i in 10...1 {
    print("\(i) green bottles")
}

…you should write this instead:

for i in (1...10).reverse() {
    print("\(i) green bottles")
}

Another alternative is just to use regular fast enumeration over an array of items,245);">var array = [1,2,3,4,5,6,7,8,9,10] for number in array { print("\(number) green bottles") }

Although if you want to be technically correct (also known as "the best kind of correct") you would write such a beast like this:

var array = Array(1...10)

for number in array {
    print("\(number) green bottles")
}

Arrays and other slice types now have removeFirst()

TheremoveLast()method has always been helpful when working with arrays,but until now it's been missing a counterpart to remove items from the start of an array.

Well,Swift 2.2 is here to rescue you with the addition of theremoveFirst()method. This removes the first element in an array,and returns it to you.

Looking back to the green bottles code above,you'll notice two quirks: first,I was usingvarrather thanlet,and second it was printing the grammatically incorrect message "1 green bottles".

Neither of these are a mistake,because I'm going to use them to demonstrateremoveFirst():

var array = Array(1...10)
array.removeFirst()

for number in array {
    print("\(number) green bottles")
}

Warning:whereasremoveLast()has an optional equivalent,244);">popLast(),there is no optional equivalent forremoveFirst(). This means if you call it on an empty array,your code will crash.

You can now compare tuples (within reason)

A tuple is simply a comma-separated list of values,where each value may or may not be named. For example:

let singer = ("Taylor","Swift")
let alien = ("Justin","Bieber")

In older versions of Swift,you couldn't compare two tuples without writing some unwieldy code like this:

func == 
 
 
  
   (t1: (T,T),t2: (T,T)) -> Bool {
    return t1.0 == t2.0 && t1.1 == t2.1
}
 
 

It's not very user-friendly to require that kind of boilerplate code,and of course it would only work for tuples that have exactly two elements. In Swift 2.2,you no longer need to write that code because tuples can be compared directly:

 

Swift 2.2's automatic tuple comparison works with tuples with two elements just like the function we wrote,but it also works with tuples of other sizes – up to arity 6,which means a tuple that contains six elements.

(In case you were wondering: "arity" is pronounced like "arrity",but "tuple" is pronounced any number of ways: "toople","tyoople" and "tupple" are all common.)

There are two reasons why Swift's tuple comparisons work only up to arity 6 (rather than arity 6 million). First,each extra comparison requires more code inside the Swift standard library. Second,using tuples that big is probably a code smell – switch to a struct instead.

You can see how tuple comparison works by changing our two tuples like this:

Be prepared for a very long error message from Xcode,but the interesting part comes near the end:

note: overloads for '==' exist with these partially matching parameter lists: ......
((A,B),(A,B)),((A,B,C),C)),C,D),D)),D,E),E)),E,F),F))

As you can see,Swift literally has functions to compare tuples all the way up to(A,F),which ought to be more than enough.

Tuple splat syntax is deprecated

Staying with tuples for a moment longer: another feature that has been deprecated is one that has been part of Swift since 2010 (yes,years before it launched). It's been named "the tuple splat",and not many people were using it. It's partly for that reason – although mainly because it introduces all sorts of ambiguities when reading code – that this syntax is being deprecated.

In case you were curious – and let's face it,you probably are – here's an example of tuple splat syntax in action:

func describePerson(name: String,age: Int) {
    print("\(name) is \(age) years old")
}

let person = ("Taylor Swift",age: 26)
describePerson(person)

But remember: don't grow too fond of your new knowledge,because tuple splats are deprecated in Swift 2.2 and will be removed entirely in a later version.

More keywords can be used as argument labels

Argument labels are a core feature of Swift,and let us write code like this:

for i in 1.stride(through: 9,by: 2) {
    print(i)
}

Without thethroughorbylabels,this code would lose its self-documenting nature: what do the 9 and 2 do in1.stride(9,2)? In this example,Swift also uses the argument labels to distinguish1.stride(through: 9,by: 2)from1.stride(to: 9,by: 2),which produces different results.

As of Swift 2.2,you can now use a variety of language keywords as these argument labels. You might wonder why this would be a good thing,but consider this code:

func printGreeting(name: String,repeat repeatCount: Int) {
    for _ in 0 ..< repeatCount {
        print(name)
    }
}

printGreeting("Taylor",repeat: 5)

That usesrepeatas an argument label,which makes sense because the function will print a string a number of times. Becauserepeatis a keyword,this code would not work before Swift 2.2 – you would need to write`repeat`instead,which is unpleasant.

Note that there are still some keywords that may not be used,specificallyvar,244);">letandinout.

var parameters have been deprecated

Another deprecation,but again with good reason:varparameters are deprecated because they offer only marginal usefulness,and are frequently confused withinout. These things are so sneaky I couldn't resist adding one to mySwift language tests,although I will probably have removed them by the time you read this!

To give you an example,here is theprintGreeting()function modified to usevar:

func printGreeting(var name: String,repeat repeatCount: Int) {
    name = name.uppercaseString

    for _ in 0 ..< repeatCount {
        print(name)
    }
}

printGreeting("Taylor",sans-serif; font-size: 16px; line-height: 28px;">The differences there are in the first two lines:nameis nowvar name,andnamegets converted to uppercase so that "TAYLOR" is printed out five times.

varkeyword,244);">namewould have been a constant and so theuppercaseStringline would have failed.

The difference betweenvarandinoutis subtle: usingvarlets you modify a parameter inside the function,244);">inoutcauses your changes to persist even after the function ends.

varis deprecated,and it's slated for removal in Swift 3.0. If this is something you were using,just create a variable copy of the parameter inside the method,repeat repeatCount: Int) { let upperName = name.uppercaseString for _ in 0 ..< repeatCount { print(upperName) } } printGreeting("Taylor",repeat: 5)

Renamed debug identifiers: #line,#function,#file

Swift 2.1 and earlier used the "screaming snake case" symbols__FILE__,244);">__LINE__,244);">__COLUMN__,244);">__FUNCTION__,which automatically get replaced the compiler by the filename,line number,column number and function name where they appear.

In Swift 2.2,those old symbols have been replaced with#file,244);">#line,244);">#columnand#function,which will be familiar to you if you've already usedSwift 2.0's #availableto check for iOS features. As the official Swift review says,it also introduces "a convention where # means invoke compiler substitution logic here."

Below I've modified theprintGreeting()function so you can see both the old and new debug identifiers in action:

For the sake of completion,I should add that you can also use#dsohandle,but if you know what dynamic shared object handles are you probably already spotted this change yourself!

Stringified selectors are deprecated

One unwelcome quirk of Swift before 2.2 was that selectors could be written as strings,245);">navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Tap!",style: .Plain,target: self,action: "buttonTaped")

If you look closely,I wrote"buttonTaped"rather than"buttonTapped",but Xcode wasn't able to notify me of my mistake if either of those methods didn't exist.

This has been resolved as of Swift 2.2: using strings for selectors has been deprecated,and you should now write#selector(buttonTapped)in that code above. If thebuttonTapped()method doesn't exist,you'll get a compile error – another whole class of bugs eliminated at compile time!

Compile-time Swift version checking

Swift 2.2 adds a new build configuration option that makes it easy to combine code code written in versions of Swift into a single file. This might seem unnecessary,but spare a thought to people who write libraries in Swift: do they target Swift 2.2 and hope everyone is using it,or target Swift 2.0 and hope users can upgrade using Xcode?

Using the new build option lets you write two different flavours of Swift,and the correct one will be compiled depending on the version of the Swift compiler.

For example:

#if swift(>=2.2)
print("Running Swift 2.2 or later")
#else
print("Running Swift 2.1 or earlier")
#endif

Just like the existing#if os()build option,this adjusts what code is produced by the compiler: if you're using a Swift 2.2 compiler,the secondprint()line won't even be seen. This means you can use utter gibberish if you want:

#if swift(>=2.2)
print("Running Swift 2.2 or later")
#else
THIS WILL COMPILE JUST FINE IF YOU'RE
USING A SWIFT 2.2 COMPILER BECAUSE
THIS BIT IS COMPLETELY IGNORED!
#endif

New documentation keywords: recommended,recommendedover,and keyword

Swift supports Markdown-formatted comments to add metadata to your code,so you can write things like this:

/**
Say hello to a specific person
- parameters:
- name: The name of the person to greet
- returns: Absolutely nothing
- authors:
Paul Hudson
Bilbo Baggins
- bug: This is a deeply dull function
*/
func sayHello(name: String) {
    print("Hello,\(name)!")
}

sayHello("Bob")

This metadata gets used in code completion ("Say hello to a specific person" gets shown as you type) and also in the quick help pane,which is where the other data is shown.

recommended,244);">recommendedover,244);">keyword. These appear to be designed to make code completion more useful by letting you specify which properties and methods should return matches inside Xcode,but right now it doesn't appear to be working so that's only a hunch.

When things do suddenly spring into life – soon,I hope! – you can use them like this:

/**
Greets a named person
- keyword: greeting
- recommendedover: sayHelloToPaul
*/
func sayHello(name: String) { }

/**
Always greets the same person
- recommended: sayHello
*/
func sayHelloToPaul() { }

recommendedlets you say "prefer this other method instead",244);">recommendedoverlets you say "prefer me over this other method."

Like I said,these don't appear to be functional in the current Xcode 7.3,but I filed a bug with Apple in the hope of getting some clarity around what these do,and will update this page when I find out more.

On the plus side,Xcode 7.3 does feature all-new code completion: you can now type something like "strapp" to have "stringByAppendingString" highlighted in the code completion,or "uitavc" to have "UITableViewCell" highlighted. It will take a little thinking to rewire your brain to use these text shortcuts,but it does promise a significant speed up for your coding.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 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)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。