-
Notifications
You must be signed in to change notification settings - Fork 0
/
PicExperienceViewController.h
67 lines (42 loc) · 1.31 KB
/
PicExperienceViewController.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// PicExperienceViewController.h
// new_LinearAlgebra
//
// Created by WorkSpace_付国强 on 15/1/22.
// Copyright (c) 2015年 付国强. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Header.h"
#import "drawerView.h"
#import "anglePicker.h"
#import "TBCircularSlider.h"
#import "guideViewController.h"
@interface PicExperienceViewController : UIViewController<UITextFieldDelegate,anglePickerIsScroll>
/**
THE VIEW WHIERE PUT THE MAIN IMAEG
*/
@property (strong ,nonatomic)UIImageView *imageView;
/**
THE MAIN VIEW OF THE CONTROLLER VIEW
*/
@property (strong, nonatomic)UIScrollView *scrollView_MainView;
/**
THE SUBVIEW OF THE MAIN SCROLLVIEW
*/
@property (strong ,nonatomic)UIScrollView *scrollView_subView;
/**
THE DRAWER OF THE VIEW TO SHWO THE MENUE
*/
@property (strong ,nonatomic)drawerView *drawer;
/**
THE CONTAINER OF ALL THE TEXTFIELDVIEWS
*/
@property (strong ,nonatomic)NSMutableArray *TFArray;
/**
AN ANGLEPICKER THAT PICK THE ANGLE THE PICTURE WILL ROTOTA
*/
@property (strong ,nonatomic)anglePicker * anglePicker;
@property (strong ,nonatomic) TBCircularSlider *anglePicker_1;
@property (strong ,nonatomic) TBCircularSlider *anglePicker_2;
@property (strong ,nonatomic) UIImageView *guideImage;
@end