I downloaded Apple's MyLife sample project and attempted to build and run it using Xcode 8 beta 6.
There are two places where a view controller has implemented the prepare(for:sender:)
call to do stuff before a storyboard segue is performed.
override func prepare(for segue: UIStoryboardSegue, sender: AnyObject?) {
That line has an error saying "Method does not override any method from its superclass".
If I remove the override, the app builds but the method isn't called when it should be.