The User-Interface Layer: NSTextView Class
The vast majority of applications interact with the text system through one class: NSTextView. An NSTextView object provides a rich set of text-handling features and can:
Display text in various fonts, colors, and paragraph styles
Display images
Read text and images from (and write them to) disk or the pasteboard
Let users control text attributes such as font, superscripting and subscripting, kerning, and the use of ligatures
Cooperate with other views to enable scrolling and display of the ruler
Cooperate with the Font panel (Fonts window) and Spelling panel
Support various key bindings, such as those used in Emacs
The interface that this class declares (and inherits from its superclass NSText) lets you programmatically:
Control the size of the area in which text is displayed
Control the editability and selectability of the text
Select and act on portions of the text
NSTextView objects are used throughout the Cocoa user interface to provide standard text input and editing features.
An NSTextView object is a convenient package of the most generally useful text-handling features. If the features of the NSTextView class satisfy your application’s requirements and you need more programmatic control over the characters and attributes that make up the text, you’ll have to learn something about the object that stores this data, NSTextStorage.
One of the design goals of NSTextView is to provide a comprehensive set of text-handling features so that you should rarely need to create a subclass. In its standard incarnation, NSTextView creates the requisite group of objects that support the text system—NSTextContainer, NSLayoutManager, and NSTextStorage objects. Here are the major features that NSTextView adds to those of NSText:
Rulers. NSTextView works with the NSRulerView class to let users control paragraph formatting, in addition to using commands in the Text menu provided by Interface Builder, which is available as a submenu of the Format menu as well as a menu in the menu bar.
Input management and key binding. Certain key combinations are bound to specific NSTextView methods so that the user can, for example, move the insertion point without using the mouse.
Marked text attributes. NSTextView defines a set of text attributes that support special display characteristics during input management. Marked text attributes affect only visual aspects of text—color, underline, and so on—they don’t include any attributes that would change the layout of text.
File and graphic attachments. The extended text system provides programmatic access to text attachments as instances of NSTextAttachment, through the NSTextView and NSTextStorage classes.
Delegate messages and notifications. NSTextView adds several delegate messages and notifications to those used by NSText. The delegate and observers of an NSTextView can receive any of the messages or notifications declared by either class.
Copyright © 1997, 2012 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2012-09-19