//
|
// 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
|