27 lines
511 B
Objective-C
27 lines
511 B
Objective-C
//
|
|
// IfishCameraRecordfirstCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/12/9.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "IfishCameraRecordfirstCell.h"
|
|
|
|
@implementation IfishCameraRecordfirstCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
self.PlayRecTipsImg.image = LXImageWithImageName(@"transcribe_tips");
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
|
|
}
|
|
|
|
@end
|