NTYSmartTextView 通过 CocoaPods 提供,要安装它,简单地添加以下行到 Podfile 中:
platform :osx
pod "NTYSmartTextView"
在 Xib 中,将文本视图的自定义视图设置为 NTYSmartTextView
。默认情况下,上述功能都是启用的。如果您想更改默认配置,请按以下方式更改属性。
self.textView.smartIndentEnabled = NO;
self.textView.softTabEnabled = NO;
// You also can change the width of soft tab from 4.
self.textView.tabWidth = 2;
self.textView.autoPairCompletionEnabled = NO;