Daniel Henneh
Daniel Henneh

Reputation: 301

Populate a UITableView with videos in my Vimeo account

How can I populate a UITableView with videos in my Vimeo account using swift?

I haven't tried anything yet since I don't even know where to start.

Upvotes: 1

Views: 76

Answers (1)

valosip
valosip

Reputation: 3402

Start by looking through this documentation: VIMNetworking

Sample app code can be found here: Pegasus

After you authenticate and connect, make an API call to grab your videos, then display them from the JSON response into the uitableview. (there are plenty of tutorials on how to populate a UITableView from a JSON response (etc)...

Upvotes: 1

Related Questions