Changeset 400
- Timestamp:
- 06/17/09 16:47:35 (4 years ago)
- Location:
- apps/iphone/superbook/trunk/Classes
- Files:
-
- 2 modified
-
LocateThem_ViewController.h (modified) (2 diffs)
-
LocateThem_ViewController.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/superbook/trunk/Classes/LocateThem_ViewController.h
r386 r400 42 42 IBOutlet UIView *loadingView; 43 43 IBOutlet UISearchBar *telSearch; 44 IBOutlet UILabel *labelForLoadingView; 44 45 FriendsMapViewController *mapViewController; 45 46 UINavigationController *telNavController; … … 56 57 @property (nonatomic, retain) IBOutlet UIProgressView *progressView; 57 58 @property (nonatomic, retain) IBOutlet UIView *loadingView; 59 @property (nonatomic, retain) IBOutlet UILabel *labelForLoadingView; 58 60 @property (nonatomic, retain) IBOutlet UISearchBar *telSearch; 59 61 @property (nonatomic, retain) UINavigationController *telNavController; -
apps/iphone/superbook/trunk/Classes/LocateThem_ViewController.m
r386 r400 35 35 @synthesize progressView; 36 36 @synthesize loadingView; 37 @synthesize labelForLoadingView; 37 38 @synthesize telSearch; 38 39 @synthesize telNavController; … … 86 87 // friendsDataDidLoad() is called and we complete building the table. 87 88 // Don't use a background thread because the AddressBook framework may not be threadsafe 89 [self.labelForLoadingView setText:LocStr(@"Loading AddressBook...")]; 88 90 [self.view addSubview:loadingView]; 89 91 loadingView.center = self.view.center;








