1234567891011121314151617181920212223 |
- //
- // DetailMainImgCell.h
- // FirstLink
- //
- // Created by jack on 15/7/20.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UITableViewCell+PindanDetail.h"
- @interface DetailMainImgCell : FKDetailControllerBaseCell
- @property (nonatomic, strong, readonly) UIImageView *mainImgView;
- @property (nonatomic, strong) NSString *totalText;
- @property (nonatomic, strong) NSString *titleText;
- + (NSString *)cdnImgUrlStringWithString:(NSString *)imgUrl;
- //- (void)configCell:(id)obj;
- @end
|