Skip to content

Instantly share code, notes, and snippets.

@CodeNextPaco
Created December 29, 2021 19:27
Show Gist options
  • Save CodeNextPaco/72d7151d22fdeef4698d7c6ae916c6fa to your computer and use it in GitHub Desktop.
Save CodeNextPaco/72d7151d22fdeef4698d7c6ae916c6fa to your computer and use it in GitHub Desktop.
Project 1 detail view controller
import UIKit
class DetailViewController: UIViewController {
@IBOutlet var imageView: UIImageView!
var selectedImage:String!
override func viewDidLoad() {
super.viewDidLoad()
//use the selectedImage string set by the Table View Controller to load the right pic.
title = selectedImage
navigationItem.largeTitleDisplayMode = .never
imageView.image = UIImage(named: selectedImage)
}
}
@CodeNextPaco
Copy link
Author

first commit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment