blob: 36053a99f6a8bc40410469ab1db3c911bc5c37bf [file] [log] [blame]
yangsu@google.comc5aeccd2011-07-17 14:42:08 +00001//
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