mirror of
https://github.com/HackPlan/IQKeyboardManager.git
synced 2026-06-18 03:48:19 +08:00
23 lines
640 B
Objective-C
23 lines
640 B
Objective-C
//
|
|
// ViewController.h
|
|
// KeyboardTextFieldDemo
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ScrollViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UITextFieldDelegate,UITextViewDelegate>
|
|
{
|
|
IBOutlet UIScrollView *scrollViewDemo;
|
|
IBOutlet UITableView *simpleTableView;
|
|
IBOutlet UIScrollView *scrollViewOfTableViews;
|
|
IBOutlet UITableView *tableViewInsideScrollView;
|
|
IBOutlet UIScrollView *scrollViewInsideScrollView;
|
|
|
|
|
|
IBOutlet UITextField *topTextField;
|
|
IBOutlet UITextField *bottomTextField;
|
|
|
|
IBOutlet UITextView *topTextView;
|
|
IBOutlet UITextView *bottomTextView;
|
|
}
|
|
@end
|