skia2/experimental/iOSSampleApp/SkAlertPrompt.h
yangsu@google.com 2e20c248f3 Updated iOSSampleApp and related files.
Removed include guard in SkTime_Unix.cpp, which the iOSSampleApp now uses.


git-svn-id: http://skia.googlecode.com/svn/trunk@1820 2bbb7eff-a529-9590-31e7-b0007b416f81
2011-07-07 19:26:42 +00:00

20 lines
317 B
Objective-C

//
// SkAlertPrompt.h
// iOSSampleApp
//
// Created by Yang Su on 7/6/11.
// Copyright 2011 Google Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface SkAlertPrompt : UIAlertView {
UITextField *textField;
}
@property (nonatomic, retain) UITextField *textField;
- (NSString*)enteredText;
@end