| 12345678910111213141516171819202122232425262728 |
- //
- // RAEditPhotoModel.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RAEditPhotoModel.h"
- @implementation RAEditPhotoModel
- - (CGFloat)height {
- return 100.0f;
- }
- - (NSString *)photoName {
- return [NSString stringWithFormat:@"%@.jpg",self.key];
- }
- - (void)setPhoto:(UIImage *)photo {
- _photo = photo;
- if (self.delegate && [self.delegate respondsToSelector:@selector(refresh)]) {
- [self.delegate refresh];
- }
- }
- @end
|