Skip to content

Instantly share code, notes, and snippets.

@clc80
Created January 30, 2020 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clc80/b6358befc5fc264b6fa66aec40a347c0 to your computer and use it in GitHub Desktop.
Save clc80/b6358befc5fc264b6fa66aec40a347c0 to your computer and use it in GitHub Desktop.
Code for NameDetailViewController
import UIKit
class NameDetailViewController: UIViewController {
var name: String?
@IBOutlet var NameLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
NameLabel.text = name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment