What is new in Swift 2.0

Lots of new feature have been introduced as part of Swift 2.0. The list includes guard, repeat-while, defer, error handling, protocol extensions, print, pattern matching, early exits, UI Testing, UI Stackview etc. Let us see some of these cool features.

guard, try and catch

[code language=”swift”]func printISPDetails() {

let url = NSURL(string: “http://www.telize.com/geoip”)
let request = NSURLRequest(URL: url!)

let session = NSURLSession.sharedSession()

let task = session.dataTaskWithRequest(request) { (data: NSData?, response: NSURLResponse?, error: NSError?) -> Void in
guard error == nil else {
print(“Error while calling the webservice ” + error!.localizedDescription)
return
}

let status = (response as! NSHTTPURLResponse).statusCode

guard status == 200 else {
print(“Received response status code as \(status)”)
return
}

guard data != nil else {
print(“data not received from webservice”)
return
}
do {
let dict = try NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments)
print(dict)
} catch let error as NSError {
print(“Error parsing JSON response ” + error.localizedDescription)
}
}
task.resume()
}
[/code]

The guard statement is used for checking the else part i.e when there is error print the error and exit the function.

[code language=”swift”]guard error != nil else {
print(“Error while calling the webservice ” + error!.localizedDescription)
return
}[/code]

Then we have the try catch statments used for parsing the JSON response. Prior to Swift 2.0, JSONObjectWithData method had an extra argument (NSError) for cpaturing the error. Now in Swit 2.0 this is done in cleaner way by throwing an exception when any errors occur while parsing the JSON response. And you can handle this using do, try , catch block as shown below.

[code language=”swift”] do {
let dict = try NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments)
print(dict)
} catch let error as NSError {
print(“Error parsing JSON response ” + error.localizedDescription)
}
[/code]

defer

if you coming from Java background then defer is simular to finally statement. You can use when you call a piece of code irrespective of success of failure of opertation. One common example would be closing the file handle in a function does a read write operation to a file.

[code language=”swift”]defer { ..code… }
[/code]

repeat

We all know how do while works, the gets executed for the first time irrespective of codition in the while loop.

[code language=”swift”]var index = 0
do {
print(index)
index++
} while (index < 10)[/code]

In Swift 2.0, the do keyword is replaced by repeat. Makes more sense right!

[code language=”swift”]var index = 0
repeat {
print(index)
index++
} while (index < 10)[/code]


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.