Pass value from one scene to other in iOS app using Swift

Code of ViewController (code of file from where you want to pass value): import UIKit class ViewController: UIViewController {     @IBOutlet weak var txt1: UITextField!     override func viewDidLoad() {         super.viewDidLoad()             }     override func didReceiveMemoryWarning() {         super.didReceiveMemoryWarning()   ...

Develop an iPhone application that convert birth date into year, month and days in swift.

Code: ViewController.swift: import UIKit class ViewController: UIViewController {     @IBOutlet weak var lblday: UILabel!        @IBOutlet weak var view1: UIView!     @IBOutlet weak var lblmonth: UILabel!     @IBOutlet weak var lblyear: UILabel!     @IBOutlet weak var txtdate: UITextField!     override func viewDidLoad() {        ...