26 lines
524 B
Objective-C
26 lines
524 B
Objective-C
//
|
|
// ifishdeviceListCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/6/28.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ifishdeviceListCell : UITableViewCell
|
|
|
|
@property (strong, nonatomic) UIImageView *nodImg;
|
|
|
|
@property (strong, nonatomic) UILabel *deviceNameLabel;
|
|
|
|
-(void)setcellImgAtindex:(NSIndexPath *)indexPath
|
|
|
|
withSelectIndex:(NSIndexPath *)selctIndex;
|
|
|
|
-(void)setTitleAtIndex:(NSIndexPath *)indexPath
|
|
|
|
withdeviceName:(NSString *)nameStr;
|
|
|
|
@end
|