25 lines
458 B
Objective-C
25 lines
458 B
Objective-C
//
|
|
// YooseeCenterViewCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/6/28.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "YooseeCenterViewCell.h"
|
|
|
|
@implementation YooseeCenterViewCell
|
|
|
|
- (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
|