Last active
September 24, 2019 09:39
-
-
Save wendyliga/d499325ad96ed5450bbe49f741b83b69 to your computer and use it in GitHub Desktop.
Texture ASViewController Example
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
class ViewController: ASViewController<ASDisplayNode> { | |
init() { | |
super.init(node: ASDisplayNode()) | |
self.node.backgroundColor = .white | |
} | |
required init?(coder aDecoder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment