18 lines
454 B
Objective-C
18 lines
454 B
Objective-C
//
|
|
// ShopInfosViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/14.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishShopInfo.h"
|
|
#import "CustomeLabel.h"
|
|
@interface ShopInfosViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *InfoTile;
|
|
@property (weak, nonatomic) IBOutlet CustomeLabel *InfoDetail;
|
|
-(void)loadDataWith:(IfishShopInfo *)info atIndex:(NSIndexPath*)indexPath;
|
|
|
|
@end
|