Skip to content

Commit 0ea602b

Browse files
authored
Merge pull request #27 from pinda/master
Add 'autocorrectionType'
2 parents 65eb796 + 629a844 commit 0ea602b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Pod/Classes/NextGrowingTextView.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,11 @@ extension NextGrowingTextView {
377377
get { return self.textView.keyboardType }
378378
set { self.textView.keyboardType = newValue }
379379
}
380+
381+
public var autocorrectionType : UITextAutocorrectionType {
382+
get { return self.textView.autocorrectionType }
383+
set { self.textView.autocorrectionType = newValue }
384+
}
380385
}
381386

382387
extension NextGrowingTextView: UITextViewDelegate {

0 commit comments

Comments
 (0)