A solution for UITextField/UITextView's keyboard cover view.
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[YOSKeyboardAvoiding setAvoidingView:self.view];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[YOSKeyboardAvoiding resume];
}
must set scrollView's delegate = nil in the dealloc, otherwirse YOSKeyboardAvoiding will crash.
- (void)dealloc {
_scrollView.delegate = nil;
}
welcome pr :)