123456789101112131415161718192021222324 |
- //
- // QuitTextViewCell.m
- // LN_School
- //
- // Created by EchoShacolee on 2017/4/20.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import "QuitTextViewCell.h"
- @implementation QuitTextViewCell
- - (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
|