12345678910111213141516171819202122232425262728293031323334 |
- //
- // 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
|