25 lines
418 B
Objective-C
25 lines
418 B
Objective-C
//
|
|
// PopCell.m
|
|
// ifishPop
|
|
//
|
|
// Created by imac on 16/7/29.
|
|
// Copyright © 2016年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import "PopCell.h"
|
|
|
|
@implementation PopCell
|
|
|
|
- (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
|