25 lines
447 B
Objective-C
25 lines
447 B
Objective-C
//
|
|
// PlusTableViewCell.m
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/28.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "PlusTableViewCell.h"
|
|
|
|
@implementation PlusTableViewCell
|
|
|
|
- (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
|