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