// // YYTextViewController.m // Demo // // Created by IEMacBook01 on 21/05/16. // Copyright © 2016 Iftekhar. All rights reserved. // #import "YYTextViewController.h" #import "IQKeyboardManager.h" #import "YYTextView.h" @interface YYTextViewController () @end @implementation YYTextViewController { IBOutlet YYTextView *textView; } +(void)initialize { [super initialize]; [[IQKeyboardManager sharedManager] registerTextFieldViewClass:[YYTextView class] didBeginEditingNotificationName:YYTextViewTextDidBeginEditingNotification didEndEditingNotificationName:YYTextViewTextDidEndEditingNotification]; } -(void)viewDidLoad { [super viewDidLoad]; textView.placeholderText=@"This is placeholder text of YYTextView"; } - (void)textViewDidBeginEditing:(YYTextView *)tv { [tv reloadInputViews]; } @end