zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  WKAvoidKeyboardViewController.h
//  AvoidKeyboardDemo
//
//  Created by 吴珂 on 15/9/9.
//  Copyright (c) 2015年 MyCompany. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface WKAvoidKeyboardViewController : UIViewController
 
@property (nonatomic, strong) UITextField *editTextField;
@property (nonatomic, strong) UITextView *editTextView;
 
- (void)hideKeyboard:(NSNotification *)noti;
- (void)showKeyboard:(NSNotification *)noti;
- (void)searchTextViewWithView:(UIView *)view;
 
@end