DCCommentView
DCCommentView copied to clipboard
Text Area Showing under keypad Suggestion bar in iOS 11
self.commentView = [[DCCommentView alloc] initWithScrollView:self.commentTblView frame:self.view.bounds]; self.commentView.delegate = self; //self.commentView.charLimit = 255; you can set this if you want a character limit self.commentView.tintColor = [UIColor redColor]; [self.view addSubview:self.commentView];
Text Area Showing under keypad Suggestion.