It's time to practice! With what you've learned in the previous articles, create an app that meets the following requirements:
- Display a list of products from this url: https://educaswift.com/public/products.json
- Each product will contain an image loaded from an url, title, description and price.
- Use Alamofire to download the content of the url.
- Use
Decodable
protocol to convert the json from the url.
Be the first to comment