-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPAImageDisplayAcoustic.h
43 lines (30 loc) · 1.05 KB
/
PPAImageDisplayAcoustic.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
//
// PPAImageDisplayAcoustic.h
// Personal Project App
//
// Created by Albert Kragl on 1/8/2014.
// Copyright (c) 2014 Albert Kragl. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PPAHomeScreen.h"
@interface PPAImageDisplayAcoustic : UIViewController <UIAlertViewDelegate> {
IBOutlet UIImageView *imageview;
IBOutlet UINavigationItem *navBarTitle;
IBOutlet UIButton *rightButton;
IBOutlet UIButton *leftButton;
NSUInteger solutions123Count;
NSUInteger solution1Count;
NSUInteger solution2Count;
NSUInteger solution3Count;
NSUInteger totalSolutionCount;
NSUInteger totalSolutionIndex;
}
@property (nonatomic, retain) NSMutableArray *solutions123;
@property (nonatomic, retain) NSMutableArray *solution1;
@property (nonatomic, retain) NSMutableArray *solution2;
@property (nonatomic, retain) NSMutableArray *solution3;
@property (nonatomic, retain) NSMutableArray *totalSolution;
@property (nonatomic, retain) NSString *sizeSuffix;
-(IBAction)previousSolutionImage;
-(IBAction)nextSolutionImage;
@end