PicScreenView.h 715 Bytes
Newer Older
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
//
//  PicScreenView.h
//  redstar
//
//  Created by admin on 15/12/11.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "GroupTabBar.h"

#import "ScopeTableView.h"
#import "StateTableView.h"
#import "TimeTableView.h"
@interface PicScreenView : UIView
@property (nonatomic, strong) GroupTabBar *groupTabBar; // 重置

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

@property (nonatomic, strong) ScopeTableView *scopeTableView;
@property (nonatomic, strong) UITextView *textView1;
@property (nonatomic, strong) UITextView *textView2;


@property (nonatomic, strong) TimeTableView *timeTableView;

@end