//
// GXFProcessMaterialTableViewCell.h
// XFFruit
//
// Created by freecui on 15/9/4.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GXFProcessMaterial.h"
@interface GXFProcessMaterialTableViewCell : UITableViewCell
@property (nonatomic,strong)UIImageView *smallImageView;
@property (nonatomic,strong)UIButton *editBtn;
@property (nonatomic,strong)UILabel *seqLabel;
@property (nonatomic,strong)UILabel *lineLabel;
@property (nonatomic,strong)UIView *showView;
- (instancetype)initWithStyle:(UITableViewCellStyle)style
reuseIdentifier:(NSString *)reuseIdentifier
processMaterial: (GXFProcessMaterial *)processMaterial;
@end
@interface GXFProcessMaterialTableViewCell (Configure)
- (void)updateWithProcessMaterial: (GXFProcessMaterial *)processMaterial;
@end
-
freecui authored9ce3345a