22 lines
628 B
Objective-C
22 lines
628 B
Objective-C
//
|
|
// ShopDetailViewfirstCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/17.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishShopInfo.h"
|
|
@interface ShopDetailViewfirstCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *shopImg;
|
|
@property (weak, nonatomic) IBOutlet UILabel *province;
|
|
@property (weak, nonatomic) IBOutlet UILabel *vRenZheng;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nYear;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopUser;
|
|
@property (weak, nonatomic) IBOutlet UILabel *ShopName;
|
|
|
|
-(void)loadDataWith:(IfishShopInfo *)info;
|
|
|
|
@end
|