mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-08 02:19:01 +08:00
21 lines
369 B
Swift
21 lines
369 B
Swift
//
|
|
// IssueLabelDotCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 5/20/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class IssueLabelDotCell: UICollectionViewCell {
|
|
|
|
static let reuse = "cell"
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
layer.cornerRadius = bounds.width/2
|
|
}
|
|
|
|
}
|