blob: 1030129f9afc63eddcc39d41372c9bfe10b13e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// SettingsViewController.h
// FixMyStreet
//
// Created by Matthew on 20/10/2008.
// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface SettingsViewController : UITableViewController {
UILabel *nameLabel;
UILabel *nameCurrent;
UILabel *emailLabel;
UILabel *emailCurrent;
UILabel *phoneLabel;
UILabel *phoneCurrent;
BOOL firstTime;
}
@property (nonatomic, assign) BOOL firstTime;
@end
|