| yangsu@google.com | c5aeccd | 2011-07-17 14:42:08 +0000 | [diff] [blame] | 1 | // |
| 2 | // SkAlertPrompt.h | ||||
| 3 | // iOSSampleApp | ||||
| 4 | // | ||||
| 5 | // Created by Yang Su on 7/6/11. | ||||
| 6 | // Copyright 2011 Google Inc. All rights reserved. | ||||
| 7 | // | ||||
| 8 | |||||
| 9 | #import <UIKit/UIKit.h> | ||||
| 10 | |||||
| 11 | |||||
| 12 | @interface SkAlertPrompt : UIAlertView { | ||||
| 13 | UITextField *textField; | ||||
| 14 | } | ||||
| 15 | @property (nonatomic, retain) UITextField *textField; | ||||
| 16 | |||||
| 17 | - (NSString*)enteredText; | ||||
| 18 | |||||
| 19 | @end | ||||