Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created July 4, 2018 09:00
Show Gist options
  • Save onmyway133/66e41b5e43561b325b4621ef72d2f84b to your computer and use it in GitHub Desktop.
Save onmyway133/66e41b5e43561b325b4621ef72d2f84b to your computer and use it in GitHub Desktop.
class ViewModel {
let friends = Binding<[User]>(value: [])
init() {
getFacebookFriends {
friends.value = $0
}
}
func getFacebookFriends(completion: ([User]) -> Void) {
// Do the work
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment