//
|
// FileStatusView.h
|
// GoldRich
|
//
|
// Created by WindShan on 2017/2/13.
|
// Copyright © 2017年 WindShan. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "FileStatus.h"
|
|
@protocol SelectedDelegate <NSObject>
|
|
@optional
|
|
- (void)didSelectedSection:(FileStatus*)model;
|
|
@end
|
|
@protocol SelDetailDelegate <NSObject>
|
|
@optional
|
|
- (void)didDetailSection:(FileStatus*)model;
|
|
@end
|
|
@interface FileStatusView : UIView
|
|
@property (nonatomic, strong) UITableView * tableView;
|
@property (nonatomic, strong) FileStatus * model;
|
@property (nonatomic, strong) NSMutableArray * modelArray;
|
|
@property(nonatomic, assign)id<SelectedDelegate> delegate;
|
@property(nonatomic, assign)id<SelDetailDelegate> detailDelegate;
|
|
- (instancetype)initWithFrame:(CGRect)frame;
|
- (void) reSetView;
|
@end
|