| 123456789101112131415161718192021222324 |
- //
- // BogoSquarrePopCell.m
- // BuguLive
- //
- // Created by 宋晨光 on 2021/8/26.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import "BogoSquarrePopCell.h"
- @implementation BogoSquarrePopCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|