Swift 3 Updates
Hey there, I just went through the list changes in Swift3 and i'll log an abstract of those changes here. 1.) First parameter label: Now, all the function params have labels. 2.) Omitted needless words: Some Examples from Swift2 -> Swift3 : UIColor.blueColor() -> UIColor.blue, numbers.minElement() -> numbers.min(), "Hi there".lowercaseString -> "Hi there".lowercased, Similarly 'uppercased' for 'uppercaseString' 3 .) UpperCamelCase has been replaced with lowerCamelCase for enums and properties: NSURLRequest(URL: someURL) -> URLRequest(url: someURL) NSTextAlignment.Left -> NSTextAlignment.left UIInterfaceOrientationMask.Portrait -> UIInterfaceOrientationMask.portrait 4 .) GCD and CoreGraphics API's are changed from C style to Swift: GCD: In Swift2: "dispatch_after(dispatch_time, dispatch_get_main-queue(), {})" In Swift3: "DispatchQueue.main.asyncAfter(...