// // TrainPhotoCell.m // LNManager // // Created by apple on 2017/6/26. // Copyright © 2017年 lee. All rights reserved. // #import "TrainPhotoCell.h" @implementation TrainPhotoCell -(instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.backgroundColor = [UIColor whiteColor]; _imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, frame.size.width - 20, frame.size.width - 20)]; _imageView.clipsToBounds = YES; _imageView.contentMode = UIViewContentModeScaleAspectFit; [self.contentView addSubview:_imageView]; _dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, frame.size.width + 20, frame.size.width - 20, 20)]; [_dateLabel setText:@"" Font:FontTitle TextColor:[UIColor blackColor] Alignment:NSTextAlignmentCenter]; [self.contentView addSubview:_dateLabel]; } return self; } @end