mirror of
https://github.com/HackPlan/IQKeyboardManager.git
synced 2026-06-17 02:25:14 +08:00
- Enhanced demo project and added various examples demonstrating almost all properties of library. - Enhanced library Settings Controller. - Moved some contents of README.md file to other files.
16 lines
310 B
Objective-C
16 lines
310 B
Objective-C
//
|
|
// TextFieldViewController.h
|
|
// KeyboardTextFieldDemo
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TextFieldViewController : UIViewController<UITextFieldDelegate,UITextViewDelegate>
|
|
{
|
|
IBOutlet UIButton *buttonPush;
|
|
IBOutlet UIButton *buttonPresent;
|
|
}
|
|
|
|
- (IBAction)presentClicked:(id)sender;
|
|
|
|
@end
|