123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // 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 ()<YYTextViewDelegate>
- @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
|