Core Textのオープンソースの再実装UITextView
と使用はありますか?UITextField
AppleのSimpleTextInputwithとclassesがあり、これは明示的に次のように述べていますSimpleCoreTextView
。EditableCoreTextView
File: SimpleCoreTextView.m
Abstract:
A view that draws text, reasons about layout, and manages a selection over its text range.
IMPORTANT: Its use of CoreText is naive and inefficient, it deals only with
left-to-right text layout, and it is by no means a good template for any text
editor. It is a toy implementation included only to illustrate how to bind
the system keyboard to some pre-existing text editor.
言い換えれば、それは例えばアラビア語を処理せず、非効率的です。
UITextInput
Core Textと一連のプロトコルに基づいて、編集可能なテキストフィールドまたはテキストビューを完全に実装するための代替手段はありますか?