1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // recommendView.h
| // BuWanVideo2.0
| //
| // Created by weikou on 16/8/1.
| // Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class recommendView;
| @protocol recommendViewDelegate <NSObject>
| - (void)notHaveNetWork:(recommendView *)view;
| @end
|
| @interface recommendView : UIView
| @property (nonatomic , strong) NSMutableArray *dataHomeType;//推荐分类数据
|
| @property (nonatomic,weak)id<recommendViewDelegate>delegate;
| -(void)loadDataFromFile;
| @end
|
|