12345678910111213141516171819202122232425 |
- //
- // FKCirclePublicImageItem.m
- // FirstLink
- //
- // Created by ascii on 16/6/8.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKCirclePublicImageItem.h"
- @implementation FKCirclePublicImageItem
- - (BOOL)isNeedDisplay {
- return (self.palceholder.length || self.imageDesc.length > 0);
- }
- - (NSString*)imageSizeString {
- if (!self.displayImage) {
- return nil;
- }
- return [NSString stringWithFormat:@"%dx%d", (int)(self.displayImage.size.width), (int)(self.displayImage.size.height)];
- }
- @end
|