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:
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 ImprovementsSwift 1.2 brings several speed improvements to make both your apps and development even swifter!
Swift code is already faster than Objective-C code in some cases,so it’s good to see continued improvement here! if-let improvementsThe aptly-named “pyramid of doom” is no more! Before Swift 1.2,you could only do optional binding on one thing at a time:
Now,you can test multiple optionals at once:
Note the new Upcasts and downcastsThe
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 a In Swift 1.2,downcasts must be either optional with
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,
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 Better late than never,native Swift sets are here! Like arrays and dictionaries,the new 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
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 to let constantsConstants 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 using But in Swift 1.2,you can now declare a constant with
Any time using Objective-C interopAs 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 (
If you want to do this,you’ll need to be explicit with the type conversion:
Again,Swift is becoming the first-class citizen here: basically,Swift strings will work whenever some kind of string ( Dealing with optionalsIf you’ve been following all the changes to Swift until now,you’ve seen arguments change from 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.:
For example,consider how these Objective-C declarations would map to Swift:
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 migratorXcode 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: EditConvertTo 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
That’s a pretty complicated expression! The migrator got confused and assumed there were two expressions there. The solution? A semicolon,of course!
That’s some kind of syntax error that doesn’t compile. The other additions of
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! (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- Flex中ArrayCollection与Array的区别
- Jquery ajax加载等待执行结束再继续执行下面代码操作
- 玩转Red5+Flex(2)—— Red5 下载与安装
- Oracle Database 12c - Global Data Services
- ruby-on-rails – 有没有办法在Rails中编写500个错误页面的
- XML::Simple, XMLin()
- 返回变量Sqlite,Android,Java中的记录计数
- 使用sax解析xml文件,并自动根据实体类class得到映射后的实
- postgresql rank() over, dense_rank(), row_number() 的区
- 弹出框设计规范