Zach Drayer
Committed by Ben Copsey

@interface for UIAlertView SPIs that are used, to get rid of warnings

@@ -12,6 +12,12 @@ @@ -12,6 +12,12 @@
12 #import "DetailCell.h" 12 #import "DetailCell.h"
13 #import "ToggleCell.h" 13 #import "ToggleCell.h"
14 14
  15 +@interface UIAlertView (SPI)
  16 +- (void) addTextFieldWithValue:(NSString *) value label:(NSString *) label;
  17 +- (void) addTextFieldAtIndex:(NSUInteger) index;
  18 +- (UITextField *) textFieldAtIndex:(NSUInteger) index;
  19 +@end
  20 +
15 @implementation AuthenticationViewController 21 @implementation AuthenticationViewController
16 22
17 - (IBAction)fetchTopSecretInformation:(id)sender 23 - (IBAction)fetchTopSecretInformation:(id)sender