Skip to content

Instantly share code, notes, and snippets.

@kbw2204
Created March 27, 2021 14:12
Show Gist options
  • Select an option

  • Save kbw2204/f88401a4a2f43b3be2c8954f50f3e4bc to your computer and use it in GitHub Desktop.

Select an option

Save kbw2204/f88401a4a2f43b3be2c8954f50f3e4bc to your computer and use it in GitHub Desktop.
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