Created
March 27, 2021 14:12
-
-
Save kbw2204/f88401a4a2f43b3be2c8954f50f3e4bc 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
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| GithubService() | |
| .searchRepos(with: "rxSwift") | |
| .compactMap { $0 } | |
| .subscribe(onNext: { repos in | |
| for repo in repos { | |
| print(repo.fullName) | |
| } | |
| }).disposed(by: self.disposeBag) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment