//
|
// findGoodsTableViewCell.h
|
// BuWanVideo2.0
|
//
|
// Created by apple on 16/12/30.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
@interface findGoodsTableViewCell : UITableViewCell
|
@property (weak, nonatomic) IBOutlet UIImageView *finderCellImageView;//商品图片
|
@property (weak, nonatomic) IBOutlet UILabel *goodsName;//商品名称
|
@property (weak, nonatomic) IBOutlet UILabel *goodsPrice;//商品价格
|
@property (weak, nonatomic) IBOutlet UIImageView *userIcon;//推荐用户的头像
|
@property (weak, nonatomic) IBOutlet UILabel *userName;//推荐用户的名称
|
@property (weak, nonatomic) IBOutlet UILabel *content;//推荐理由的视图
|
@property (weak, nonatomic) IBOutlet UIButton *collectionBtn;//收藏按钮
|
@property (weak, nonatomic) IBOutlet UIButton *commitBtn;//查看评论按钮
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *userNameLength;//用于设置用户名的长度
|
|
@end
|