Created
October 24, 2018 18:08
-
-
Save vialyx/e50ba06ac748b976c585dfb02e9a5c95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var contentView: UIView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
contentView.backgroundColor = .yellow | |
} | |
// MARK: - Navigation | |
@IBAction func unwind(segue: UIStoryboardSegue) { | |
// Add this function | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment