Skip to content

Instantly share code, notes, and snippets.

@nalexn
Created October 18, 2019 09:13
Show Gist options
  • Save nalexn/bdc68fe541c01a0f37d63defdfdfe10b to your computer and use it in GitHub Desktop.
Save nalexn/bdc68fe541c01a0f37d63defdfdfe10b to your computer and use it in GitHub Desktop.
class PodcastCell: UITableViewCell {
func populate(podcast: Podcast) {
textLabel?.text = podcast.title
imageView?.image = podcast.previewImage
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment