17 lines
354 B
Objective-C
17 lines
354 B
Objective-C
//
|
|
// FishControlFirstCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/6/29.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DeviceModel.h"
|
|
@interface FishControlFirstCell : UICollectionViewCell
|
|
|
|
@property(nonatomic,strong) UIImageView *factoryIcon;
|
|
-(void)intiFactoryImgWith:(DeviceModel *)devicemodel;
|
|
|
|
@end
|