| 12345678910111213141516171819202122232425 |
- //
- // RightTableCell.m
- // Haishenghai-master
- //
- // Created by GG on 2019/1/24.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import "RightTableCell.h"
- @implementation RightTableCell
- - (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
|