photo-ios/Trovebox/TSAlertView/Demo/Classes/TSAVDemoViewController.h
2014-02-04 16:11:00 -02:00

35 lines
653 B
Objective-C

//
// TSAVDemoViewController.h
// TSAVDemo
//
// Created by Nick Hodapp aka Tom Swift on 1/19/11.
//
#import <UIKit/UIKit.h>
@interface TSAVDemoViewController : UIViewController <UITextFieldDelegate, UITextViewDelegate>
{
IBOutlet UITextField* _titleTextField;
IBOutlet UITextView* _messageTextView;
IBOutlet UITextField* _widthTextField;
IBOutlet UITextField* _maxHeightTextField;
IBOutlet UITextField* _buttonCountTextField;
IBOutlet UISwitch* _stackedSwitch;
IBOutlet UISwitch* _usesTextViewSwitch;
IBOutlet UISwitch* _hasInputFieldSwitch;
}
- (void) onAddMore: (id) sender;
- (void) onShow: (id) sender;
@end