mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
22 lines
418 B
Swift
22 lines
418 B
Swift
//
|
|
// AlbumDiscCell.swift
|
|
// Persephone-iOS
|
|
//
|
|
// Created by Daniel Barber on 2020-3-31.
|
|
// Copyright © 2020 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class AlbumDiscCell: UITableViewCell {
|
|
var albumSongItem: AlbumSongItem?
|
|
|
|
func setSongItem(songItem: AlbumSongItem) {
|
|
albumSongItem = songItem
|
|
|
|
albumDisc.text = "Disc \(songItem.disc ?? "0")"
|
|
}
|
|
|
|
@IBOutlet var albumDisc: UILabel!
|
|
}
|