Created
November 27, 2017 20:18
-
-
Save azamsharp/781b077f6240a7e2b3107ec0dca6d5ad to your computer and use it in GitHub Desktop.
SourcesTableViewController
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 SourcesTableViewController : UITableViewController { | |
private var webservice :Webservice! | |
private var sourceListViewModel :SourceListViewModel! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
updateUI() | |
} | |
private func updateUI() { | |
self.webservice = Webservice() | |
self.sourceListViewModel = SourceListViewModel(webservice: self.webservice) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment