Last active
July 26, 2019 19:26
-
-
Save aronbalog/937b08cfe494b326787e7530efd83258 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
/// MARK: DataReceivable | |
extension ColorViewController: DataReceivable { | |
typealias DataType = UIColor | |
func didReceiveData(_ data: UIColor) { | |
view.backgroundColor = data | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment