Last active
June 18, 2017 10:07
-
-
Save choiks14/c38712f50944d8cebebbd286cfe6c564 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
//snapkit | |
extension MainController { | |
func initUI() { | |
self.view.addSubview(self.tableView) | |
view.setNeedsUpdateConstraints() | |
} | |
override func updateViewConstraints() { | |
if (!didSetupConstraints) { | |
tableView.snp.makeConstraints { make in | |
make.edges.equalToSuperview() | |
} | |
didSetupConstraints = true | |
} | |
super.updateViewConstraints() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment