Difficulties converting to Swift 3
Most of them are easy fixes, simply by tapping the red button, and having Xcode fix it for you! Others include: CGRect Swift 2: let frame = CGRectMake(0, 0, 20, 20) Swift 3: let frame = CGRect(x: 0, y: 0, width: 20, height: 20) CGPoint Swift 2: let point = CGPointMake(0, 0) Swift 3: let … Read more