//
|
// PBListDataTableViewCell.m
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/12/8.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import "PBListDataTableViewCell.h"
|
|
@implementation PBListDataTableViewCell
|
|
- (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
|