I just update Xcode 8 beta 6 and get error overloading (not surprisingly), I got most of them, but there are two errors that I'm not sure how to fix.
For this I get this error Method does not override any method from its superclass
override func prepare(for segue: UIStoryboardSegue, sender: AnyObject?) {
if(segue.identifier == "***"){
}
}
And for this I get this error init has been renamed to init(describing:)
return String(self.type)
source
share