一个自动调整其框架大小以适应键盘出现的 UITextView 子类。
示例
#import "ViewController.h"
#import "MYRTextView.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet MYRTextView *textView;
@end
@implementation ViewController
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[_textView registerNotification];
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
[_textView unregisterNotification];
}