mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
25 lines
480 B
Swift
25 lines
480 B
Swift
//
|
|
// GroupTableViewCell.swift
|
|
// Bark
|
|
//
|
|
// Created by huangfeng on 2021/6/8.
|
|
// Copyright © 2021 Fin. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class GroupTableViewCell: UITableViewCell {
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
// Initialization code
|
|
}
|
|
|
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
|
super.setSelected(selected, animated: animated)
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
}
|