单军华
2018-04-18 de88ae127e305e0b153c327b073645f9353cace5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  FileDownView.h
//  GoldRich
//
//  Created by WindShan on 2017/2/13.
//  Copyright © 2017年 WindShan. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "NoticeModel.h"
 
 
@protocol SelectedNoticeDelegate <NSObject>
 
@optional
 
- (void)didSelectedNoticeSection:(NoticeModel*)model;
 
@end
 
 
@interface AdNoticeView : UIView
 
@property (nonatomic, strong) NoticeModel                    * model;
 
@property(nonatomic, assign)id<SelectedNoticeDelegate>            delegate;
 
 
- (instancetype)initWithFrame:(CGRect)frame dataModel:(NoticeModel*)model;
 
-(void)setUIView:(NoticeModel*)model;
@end