27 lines
477 B
Objective-C
27 lines
477 B
Objective-C
//
|
|
// FishDocSection0ViewImgCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/20.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "FishDocSection0ViewImgCell.h"
|
|
|
|
@implementation FishDocSection0ViewImgCell
|
|
|
|
- (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
|