1

Core Textのオープンソースの再実装UITextViewと使用はありますか?UITextField

AppleのSimpleTextInputwithとclassesがあり、これは明示的に次のように述べていますSimpleCoreTextViewEditableCoreTextView

     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.

言い換えれば、それは例えばアラビア語を処理せず、非効率的です。

UITextInputCore Textと一連のプロトコルに基づいて、編集可能なテキストフィールドまたはテキストビューを完全に実装するための代替手段はありますか?

4

1 に答える 1

1

コアテキストとに基づいて、編集可能なテキストフィールドまたはテキストビューを実装するために、OmniGroupのTextEditorを使用または参照できます。UITextInput

于 2012-10-19T05:51:00.593 に答える