#iOS10 Form Input Example
Static Forms
-
static cells - no need to write cellForRowAtIndexPath(_:)
-
segue represents a transition from one scene to another.
###Create Unwind segue Add the unwind methods at the end of a class.
//in ViewController.swift
@IBAction func didSavePreferences(segue: UIStoryboardSegue){
if let prefsVC = segue.source as? PreferencesTableTableViewController {
self.preferences = prefsVC.preferencesFromTableData()
print("Save button is tapped.")
updateLabels()
}
}
@IBAction func didCancelPreferences(segue:UIStoryboardSegue) {
print("Cancel button is tapped.")
}
###in TableView Scene
Hook up the Cancel and Save buttons to their respective action methods. Ctrl-drag form the bar button to the exit object.
###didSet in Swift After the values of properties are changed, you can do something what you want to do.
var preferences: Preferences = Preferences() {
didSet {
updateLabels()
}
}