22 lines
576 B
Objective-C
22 lines
576 B
Objective-C
//
|
|
// IfishBCShopItemCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/4/11.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishGoodsData.h"
|
|
@interface IfishBCShopItemCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *goodsImg;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *goodsName;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopName;
|
|
@property (weak, nonatomic) IBOutlet UILabel *youhuiJia;
|
|
@property (weak, nonatomic) IBOutlet UILabel *yuanJia;
|
|
|
|
-(void)loadCellData:(IfishGoodsData*)model;
|
|
|
|
@end
|