1234567891011121314151617181920212223 |
- //
- // FKCirclePublicImageItem.h
- // FirstLink
- //
- // Created by ascii on 16/6/8.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKCirclePublicImageItem : NSObject
- @property (nonatomic, strong) NSString *palceholder;
- @property (nonatomic, strong) UIImage *sourceImage;
- @property (nonatomic, strong) UIImage *displayImage;
- @property (nonatomic, strong) NSString *imageDesc;
- @property (nonatomic, strong) NSString *photoURL;
- - (BOOL)isNeedDisplay;
- - (NSString*)imageSizeString;
- @end
|