15 lines
354 B
Objective-C
15 lines
354 B
Objective-C
//
|
|
// ShopDetailThredViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/17.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishShopInfo.h"
|
|
@interface ShopDetailThredViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *shopDetailImg;
|
|
-(void)loadDataWith:(IfishShopInfo *)info;
|
|
@end
|