This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSecondPage.h
executable file
·63 lines (50 loc) · 1.91 KB
/
SecondPage.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
//
// SecondPage.h
// Aviva-iDetail
//
// Created by Rob Randell on 18/07/2012.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface SecondPage : UIViewController {
UIButton *cannstattGermany;
UIButton *luchowGermany;
UIButton *megaronGermany;
UIButton *bermondseyLondon;
UIButton *paddingtonCentral;
UIButton *heathrowLondon;
UIButton *summitHouseLondon;
UIButton *carpeDiemParis;
UIButton *guersantParis;
UIButton *halevyParis;
UIButton *metzanineFrance;
UIButton *busitelNL;
UIButton *liljeholmenSweden;
UIButton *commercePoint;
UIButton *kandaMat;
UIButton *olderfleetAust;
UIButton *sydneyAust;
NSArray *euroLocations;
NSArray *asiaLocations;
}
@property (nonatomic, retain) IBOutlet UILabel *title1;
@property (nonatomic, retain) IBOutlet UILabel *title2;
@property (nonatomic, retain) IBOutlet UILabel *title3;
@property (nonatomic, retain) IBOutlet UITextView *subtitle;
@property (nonatomic, retain) IBOutlet UIImageView *countryInfo;
@property (nonatomic, retain) IBOutlet UIImageView *mapOverlay;
@property (nonatomic, retain) IBOutlet UILabel *countryLabel;
@property (nonatomic, retain) IBOutlet UITextView *countriesTextView;
@property (nonatomic, retain) IBOutlet UIButton *us_btn;
@property (nonatomic, retain) IBOutlet UIButton *eu_btn;
@property (nonatomic, retain) IBOutlet UIButton *au_btn;
@property (nonatomic, retain) IBOutlet UIButton *close_btn;
@property (nonatomic, retain) IBOutlet UIView *officeView;
@property (nonatomic, retain) IBOutlet UIImageView *officeImage;
@property (nonatomic, retain) IBOutlet UILabel *officeName;
@property (nonatomic, retain) IBOutlet UILabel *closeLabel;
- (IBAction)regionSelect:(UIButton *)sender;
- (IBAction)officeSelect:(UIButton *)sender;
- (IBAction)closeOffice:(UIButton *)sender;
- (IBAction)closeGallery:(UIButton *)sender;
@end