-
Notifications
You must be signed in to change notification settings - Fork 0
/
PatientProfileViewController.h
44 lines (28 loc) · 1.02 KB
/
PatientProfileViewController.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
//
// PatientProfileViewController.h
// ProjectZero
//
// Created by Larkin on 1/2/13.
// Copyright (c) 2013 Larkin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PatientProfileViewController : UIViewController{
NSString * firstName;
NSString * lastName;
NSString * birthday;
NSString * healthCard;
NSString * userID;
UIButton * prescButton;
}
@property (strong, nonatomic) NSString * firstName;
@property (strong, nonatomic) NSString * lastName;
@property (strong, nonatomic) NSString * birthday;
@property (strong, nonatomic) NSString * healthCard;
@property IBOutlet UIButton * prescButton;
@property (strong, nonatomic) IBOutlet UILabel * firstNameField;
@property (strong, nonatomic) IBOutlet UILabel * lastNameField;
@property (strong, nonatomic) IBOutlet UILabel * birthdayField;
@property (strong, nonatomic) IBOutlet UILabel * healthCardField;
@property (strong, nonatomic) IBOutlet UIImageView * profPic;
@property (strong, nonatomic) NSString * userID;
@end