Prepare for Segue in Swift
I'm facing the error message: "UIStoryboardSegue does not have a member named 'identifier'" Here's the code causing the error if (segue.identifier == "Load View") { // pass data to next view } On Obj-C it's fine using like this: if ([segue.identifier isEqualToString:@"Load View"]) { // pass data to next view } What am I doing wrong? This seems to be due to a problem in the UITableViewController subclass template. It comes with a version of the prepareForSegue method that would require you to unwrap the segue. Replace your current prepareForSegue function with: override func prepareForSegue