Mastodon
Episode 56

Real Artists Ship, So Instead We Made a Podcast

00:00:00
/
01:01:41

November 17th, 2021

1 hr 1 min 41 secs

Season 1

Your Hosts
Tags

About this Episode

Welcome to Code Completion, Episode 56! We are a group of iOS developers and educators hoping to share what we love most about development, Apple technology, and completing your code!

Follow us @CodeCompletion on Twitter to hear about our upcoming livestreams, videos, and other content.

Today, we discuss:

Also, join us for #CompleteTheCode and Compiler Error, two segments that test both your knowledge and our knowledge on Swift, Apple, and all things development!

Your hosts for this week:

Be sure to also sign up to our monthly newsletter, where we will recap the topics we discussed, reveal the answers to #CompleteTheCode, and share even more things we learned in between episodes.

You are what makes this show possible, so please be sure to share this with your friends and family who are also interested in any part of the app development process.

Sponsor

This week's episode of Code Completion is brought to you by Johnny B's Bon Voyage eCommerce App course. Visit https://bon-voyage.app/course and be sure to follow Bon Voyage's instructor @jonnybcodes on Twitter to learn more and stay up to date with all his courses!

Complete the Code

How can you make sure both load methods run concurrently?

// How can you make sure both load methods run concurrently?
func loadItem(_ id: UUID) async {
    let image = await loadImage(id)
    let metadata = await loadMetadata(id)

    presentItem(id, image: image, metadata: metadata)
}

Be sure to tweet us with hashtag #CompleteTheCode if you know the answer!