Initial commit

This commit is contained in:
Ryo Aoyama
2019-06-24 12:03:35 +09:00
commit 3e216e1aa4
98 changed files with 12591 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import UIKit
final class LabelCell: UICollectionViewCell {
@IBOutlet var label: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
layer.borderWidth = 1
layer.borderColor = UIColor.gray.cgColor
}
}