Created
October 8, 2018 14:58
-
-
Save russell-archer/1633f902fbb3d2217f4609b83f0e11e8 to your computer and use it in GitHub Desktop.
ShowRandomColor. Create an outlet for the UIView in the ViewController
This file contains 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
// | |
// ViewController.swift | |
// ShowRandomColor | |
// | |
// Created by Russell Archer on 05/10/2018. | |
// Copyright © 2018 Russell Archer. All rights reserved. | |
// | |
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var colorView: UIView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment