Last active
March 14, 2017 12:24
-
-
Save dalu93/d8df11fe823a5c5a43ba11ee3dd58d6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final class SongClipTableViewCell: UITableViewCell { | |
@IBOutlet fileprivate weak var _coverImageView: UIImageView! | |
@IBOutlet fileprivate weak var _titleLabel: UILabel! | |
@IBOutlet fileprivate weak var _artistLabel: UILabel! | |
func set(_ clip: SongClip) { | |
_coverImageView.imageURL = clip.coverImageURL | |
_titleLabel.text = clip.title | |
_artistLabel.text = clip.artist | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment