Files
DiffableDataSources/Examples/Example-iOS/LabelCell.swift
T
2019-06-24 12:03:35 +09:00

13 lines
247 B
Swift

import UIKit
final class LabelCell: UICollectionViewCell {
@IBOutlet var label: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
layer.borderWidth = 1
layer.borderColor = UIColor.gray.cgColor
}
}