18 lines
493 B
Objective-C
18 lines
493 B
Objective-C
//
|
|
// StoreViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/3.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseViewController.h"
|
|
#import "merchantModel.h"
|
|
@interface StoreViewController : BaseViewController
|
|
@property (weak, nonatomic) IBOutlet UILabel *storeNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UITextView *detailView;
|
|
@property(nonatomic,strong)NSMutableArray*shopArr;
|
|
@property(nonatomic,strong)merchantModel*mermodel;
|
|
@end
|