mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
9 lines
208 B
Swift
9 lines
208 B
Swift
import UIKit
|
|
|
|
class BookCell: UITableViewCell {
|
|
@IBOutlet weak var title: UILabel!
|
|
@IBOutlet weak var subtitle: UILabel!
|
|
@IBOutlet weak var byLine: UILabel!
|
|
@IBOutlet weak var editButton: UIButton!
|
|
}
|