ScreenView.h 820 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  ScreenView.h
//  redstar
//
//  Created by admin on 15/11/11.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
10
#import "GroupTabBar.h"
admin's avatar
admin committed
11
#import "InspectTableView.h"
12 13 14

@protocol ScreenTableDelegate <NSObject>

admin's avatar
admin committed
15
- (void)tableViewDidSelectRow:(NSInteger)row;
16 17

@end
18 19 20

@interface ScreenView : UIView

21 22 23 24
@property (nonatomic, strong) GroupTabBar *groupTabBar; // 重置

@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, strong) UITextView *textView;
admin's avatar
admin committed
25
@property (nonatomic, strong) InspectTableView *inspectTableView;
26 27 28 29 30 31

@property (nonatomic, strong) UIButton *resetBtn; // 重置
@property (nonatomic, strong) UIButton *submitBtn; // 提交

@property (nonatomic, weak) id <ScreenTableDelegate> delegate;

32 33
- (instancetype)initWithTitleArray:(NSArray *)titleArray;

34

35
@end