Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created May 6, 2020 13:25
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 stevencurtis/14c4e66c9570aa0a3a221d8382613708 to your computer and use it in GitHub Desktop.
Save stevencurtis/14c4e66c9570aa0a3a221d8382613708 to your computer and use it in GitHub Desktop.
DetailViewController
class DetailViewController: UIViewController {
@IBOutlet weak var dataLabel: UILabel!
var dataString: String?
override func viewDidLoad() {
super.viewDidLoad()
if let text = dataString {
dataLabel.text = text
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment