Cocoa text system

Source: Wikipedia, the free encyclopedia.

The Cocoa text system (formerly known simply by the primary class name

text field editing capabilities and to Cocoa applications on Apple's macOS, where it is the primary text-handling system.[1] Although "extremely complex", the standard text-handling abilities of the Cocoa text system have been widely praised as without peer.[2][3]
It is possible to implement a fully featured
rich text editor in only a few lines of code.[4][5]

Formerly embodied

The Cocoa text system uses a

mutable attributed string subclass) is the model.[8]

The Cocoa text system also interacts with Services to provide standard streams functionality in a GUI environment. Users interact with two classes, NSTextField (providing single-line edit fields) or NSTextView (providing multi-line editing). Each NSTextField uses a shared instance of a NSTextView called the "field editor". This was done to reduce high memory requirements that would arise if every field implemented its own NSTextView object graph when only one field can actually have focus at any time.[9]

Cocoa adopts many Emacs keybindings familiar to programmers,[10] and the default text editing keyboard shortcuts can be overridden and new custom shortcuts can be created, by creating and editing related configuration files.[11]

References

  1. ^ Apple Inc. (2014-02-11). "About the Cocoa Text System". Cocoa Text Architecture Guide. Retrieved 2023-02-19.
  2. .
  3. ^ "Arise Aqua!". You'll build a word processor capable of handling kerning, justification, sub and superscripting, full Unicode support, spell checking, multiple font and paragraph styles, drag and drop of embedded graphics and colors, rulers with adjustable tab stops, reading and writing of conforming RTFD files, all in less than 13 lines of code! You cannot do this in any other development environment on the planet.
  4. ^ "Rich Text Handling". O'Reilly Commons. 2008-03-07. Archived from the original on 2016-07-21.
  5. ^ "Getting Started Developing For Mac OS X". There is very little custom code in TE and what is there is basically only the code necessary to make the AppKit behave like a text editor.
  6. ^ a b "GNUstep". gnustep.org. Retrieved 2020-08-16.
  7. ^ "The Cocoa text system's architecture is both modular and layered to enhance its ease of use and flexibility. Its modular design reflects the Model–View–Controller paradigm (originating with Smalltalk-80) where the data, its visual representation, and the logic that links the two are represented by separate objects. In the case of the text system, NSTextStorage holds the model's text data, NSTextContainer models the geometry of the layout area, NSTextView presents the view, and NSLayoutManager intercedes as the controller to make sure that the data and its representation onscreen stay in agreement".
  8. ^ Bright, Peter (2008-06-01). "From Win32 to Cocoa: a Windows user's would-be conversion to Mac OS X, Part III". Ars Technica. Retrieved 2023-02-19.
  9. .
  10. ^ Rus, Jacob (2006-03-20). "Customizing the Cocoa Text System". Archived from the original on 2018-10-07.
  11. ^ "Text System Defaults and Key Bindings". Apple Developer Documentation Archive. September 9, 2013. Archived from the original on March 10, 2024. Retrieved 2024-01-18.

External links