| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/AppKit.framework |
| Availability | Available in Mac OS X v10.0 and later. |
| Companion guide | |
| Declared in | NSText.h |
| Related sample code |
NSText declares the most general programmatic interface for objects that manage text. You usually use instances of its subclass, NSTextView.
Draws text for user interface objects
Uses a delegate
Provides text editing capabilities
Controls text attributes such as typesize, font, and color
readRTFDFromFile:Reads an .rtf or .rtfd file.
writeRTFDToFile:atomically:Writes the receiver’s text to a file.
stringReturns the receiver’s text without attributes.
RTFFromRange:Returns the receiver’s text with attributes.
RTFDFromRange:Returns the receiver’s text with attributes and attachments.
NSText declares the most general programmatic interface for objects that manage text. You usually use instances of its subclass, NSTextView.
NSTextView extends the interface declared by NSText and provides much more sophisticated functionality than that declared in NSText.
NSText initialization creates an instance of a concrete subclass, such as NSTextView. Instances of any of these classes are generically called text objects.
Text objects are used by the Application Kit wherever text appears in interface objects: A text object draws the title of a window, the commands in a menu, the title of a button, and the items in a browser. Your application can also create text objects for its own purposes.
– setEditable:
– isEditable
– setSelectable:
– isSelectable
– setFieldEditor:
– isFieldEditor
– setRichText:
– isRichText
– setImportsGraphics:
– importsGraphics
– replaceCharactersInRange:withRTF:
– replaceCharactersInRange:withRTFD:
– replaceCharactersInRange:withString:
– setString:
– setMaxSize:
– maxSize
– setMinSize:
– minSize
– setVerticallyResizable:
– isVerticallyResizable
– setHorizontallyResizable:
– isHorizontallyResizable
– sizeToFit
– textShouldBeginEditing: delegate method
– textDidBeginEditing: delegate method
– textShouldEndEditing: delegate method
– textDidEndEditing: delegate method
– textDidChange: delegate method
This action method applies center alignment to selected paragraphs (or all text if the receiver is a plain text object).
- (void)alignCenter:(id)sender
NSText.h
This action method applies left alignment to selected paragraphs (or all text if the receiver is a plain text object).
- (void)alignLeft:(id)sender
NSText.hReturns the alignment of the first paragraph (or all text if the receiver is a plain text object).
- (NSTextAlignment)alignment
The returned value is one of the alignments described in NSTextAlignment.
Text using NSNaturalTextAlignment is actually displayed using one of the other alignments, depending on the natural alignment of the text’s script.
NSText.h
This action method applies right alignment to selected paragraphs (or all text if the receiver is a plain text object).
- (void)alignRight:(id)sender
NSText.h
Returns the receiver’s background color.
- (NSColor *)backgroundColor
The receiver’s background color.
NSText.hReturns the initial writing direction used to determine the actual writing direction for text.
- (NSWritingDirection)baseWritingDirection
The Text system uses this value as a hint for calculating the actual direction for displaying Unicode characters. You should not need to call this method directly. If no writing direction is set, returns NSWritingDirectionNatural.
NSText.h
This action method changes the font of the selection for a rich text object, or of all text for a plain text object.
- (void)changeFont:(id)sender
If the receiver doesn’t use the Font panel, this method does nothing.
This method changes the font by sending a convertFont: message to the shared NSFontManager and applying each NSFont returned to the appropriate text. See the NSFontManager class specification for more information on font conversion.
NSText.h
This action method searches for a misspelled word in the receiver’s text.
- (void)checkSpelling:(id)sender
The search starts at the end of the selection and continues until it reaches a word suspected of being misspelled or the end of the text. If a word isn’t recognized by the spelling server, a showGuessPanel: message then opens the Guess panel and allows the user to make a correction or add the word to the local dictionary.
NSText.hThis action method copies the selected text onto the general pasteboard, in as many formats as the receiver supports.
- (void)copy:(id)sender
A plain text object uses NSStringPboardType for plain text, and a rich text object also uses NSRTFPboardType.
NSText.hThis action method copies the font information for the first character of the selection (or for the insertion point) onto the font pasteboard, as NSFontPboardType.
- (void)copyFont:(id)sender
NSText.h
This action method copies the paragraph style information for first selected paragraph onto the ruler pasteboard, as NSRulerPboardType, and expands the selection to paragraph boundaries.
- (void)copyRuler:(id)sender
NSText.hThis action method deletes the selected text and places it onto the general pasteboard, in as many formats as the receiver supports.
- (void)cut:(id)sender
A plain text object uses NSStringPboardType for plain text, and a rich text object also uses NSRTFPboardType.
NSText.hReturns the receiver’s delegate.
- (id)delegate
The receiver’s delegate, or nil if it has none.
NSText.hThis action method deletes the selected text.
- (void)delete:(id)sender
NSText.h
Returns a Boolean value that indicates whether the receiver draws its background.
- (BOOL)drawsBackground
YES if the receiver draws its background, otherwise NO.
NSText.hReturns the font of the first character in the receiver’s text, or of the insertion point if there’s no text.
- (NSFont *)font
NSText.h
Returns a Boolean value that indicates whether the receiver allows the user to import files by dragging.
- (BOOL)importsGraphics
YES if the receiver allows the user to import files by dragging, otherwise NO.
A text object that accepts dragged files is also a rich text object.
NSText.h
Returns a Boolean value that indicates whether the receiver allows the user to edit text, NO if it doesn’t.
- (BOOL)isEditable
YES if the receiver allows the user to edit text, otherwise NO.
You can change the receiver’s text programmatically regardless of this setting.
If the receiver is editable, it’s also selectable.
NSText.h
Returns a Boolean value that indicates whether the receiver interprets Tab, Shift-Tab, and Return (Enter) as cues to end editing and possibly to change the first responder.
- (BOOL)isFieldEditor
YES if the receiver interprets Tab, Shift-Tab, and Return (Enter) as cues to end editing and possibly to change the first responder; NO if it accepts them as text input.
See the NSWindow class specification for more information on field editors. By default, NSText objects don’t behave as field editors.
NSText.h
Returns YES if the receiver automatically changes its width to accommodate the width of its text, NO if it doesn’t.
- (BOOL)isHorizontallyResizable
By default, an NSText object is not horizontally resizable.
NSText.h
Returns a Boolean value that indicates whether the receiver allows the user to apply attributes to specific ranges of the text.
- (BOOL)isRichText
YES if the receiver allows the user to apply attributes to specific ranges of the text, otherwise NO.
NSText.h
Returns a Boolean value that indicates whether the receiver’s enclosing scroll view shows its ruler.
- (BOOL)isRulerVisible
YES if the receiver’s enclosing scroll view shows its ruler, otherwise NO.
NSText.h
Returns a Boolean value that indicates whether the receiver allows the user to select text, NO if it doesn’t.
- (BOOL)isSelectable
YES if the receiver allows the user to select text, otherwise NO.
NSText.h
Returns YES if the receiver automatically changes its height to accommodate the height of its text, NO if it doesn’t.
- (BOOL)isVerticallyResizable
By default, an NSText object is vertically resizable.
NSText.hReturns the receiver’s maximum size.
- (NSSize)maxSize
NSText.hReturns the receiver’s minimum size.
- (NSSize)minSize
NSText.hThis action method pastes text from the general pasteboard at the insertion point or over the selection.
- (void)paste:(id)sender
NSText.h
This action method pastes font information from the font pasteboard onto the selected text or insertion point of a rich text object, or over all text of a plain text object.
- (void)pasteFont:(id)sender
NSText.h
This action method pastes paragraph style information from the ruler pasteboard onto the selected paragraphs of a rich text object.
- (void)pasteRuler:(id)sender
It doesn’t apply to a plain text object.
NSText.hAttempts to read the RTFD file at path, returning YES if successful and NO if not.
- (BOOL)readRTFDFromFile:(NSString *)path
path should be the path for an .rtf file or an .rtfd file wrapper, not for the RTF file within an .rtfd file wrapper.
NSText.hReplaces the characters in the given range with RTF text interpreted from the given RTF data.
- (void)replaceCharactersInRange:(NSRange)aRange withRTF:(NSData *)rtfData
The range of characters to be replaced.
The RTF data from which to derive the replacement string.
This method applies only to rich text objects.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
This method is designed for transferring text from out-of-process sources such as the pasteboard. In most cases, programmatic modification of the text is best done by operating on the text storage directly, using the general methods of NSMutableAttributedString.
NSText.hReplaces the characters in the given range with RTFD text interpreted from the given RTFD data.
- (void)replaceCharactersInRange:(NSRange)aRange withRTFD:(NSData *)rtfdData
The range of characters to be replaced.
The RTFD data from which to derive the replacement string.
This method applies only to rich text objects.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
This method is designed for transferring text from out-of-process sources such as the pasteboard. In most cases, programmatic modification of the text is best done by operating on the text storage directly, using the general methods of NSMutableAttributedString.
NSText.hReplaces the characters in the given range with those in the given string.
- (void)replaceCharactersInRange:(NSRange)aRange withString:(NSString *)aString
The range of characters to be replaced.
The replacement string.
For a rich text object, the text of aString is assigned the formatting attributes of the first character of the text it replaces, or of the character immediately before aRange if the range’s length is 0. If the range’s location is 0, the formatting attributes of the first character in the receiver are used.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
In most cases, programmatic modification of the text is best done by operating on the text storage directly, using the general methods of NSMutableAttributedString.
NSText.hReturns an NSData object that contains an RTFD stream corresponding to the characters and attributes within aRange.
- (NSData *)RTFDFromRange:(NSRange)aRange
Raises an NSRangeException if any part of aRange lies beyond the end of the receiver’s characters.
When writing data to the pasteboard, you can use the NSData object as the first argument to NSPasteboard's setData:forType: method, with a second argument of NSRTFDPboardType.
NSText.hReturns an NSData object that contains an RTF stream corresponding to the characters and attributes within aRange, omitting any attachment characters and attributes.
- (NSData *)RTFFromRange:(NSRange)aRange
Raises an NSRangeException if any part of aRange lies beyond the end of the receiver’s characters.
When writing data to the pasteboard, you can use the NSData object as the first argument to NSPasteboard's setData:forType: method, with a second argument of NSRTFPboardType.
NSText.h
Scrolls the receiver in its enclosing scroll view so the first characters of aRange are visible.
- (void)scrollRangeToVisible:(NSRange)aRange
NSText.h
This action method selects all of the receiver’s text.
- (void)selectAll:(id)sender
NSText.h
Returns the range of selected characters.
- (NSRange)selectedRange
NSText.h
Sets the alignment of all the receiver’s text to mode.
- (void)setAlignment:(NSTextAlignment)mode
The value of mode must be one of the alignments described in NSTextAlignment.
Text using NSNaturalTextAlignment is actually displayed using one of the other alignments, depending on the natural alignment of the text’s script.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.h
Sets the receiver’s background color to a given color.
- (void)setBackgroundColor:(NSColor *)aColor
The background color for the receiver.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.hSets the initial writing direction used to determine the actual writing direction for text.
- (void)setBaseWritingDirection:(NSWritingDirection)writingDirection
If you know the base writing direction of the text you are rendering, you can use this method to specify that direction to the text system.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.h
Sets the receiver’s delegate.
- (void)setDelegate:(id)anObject
The delegate for the receiver.
NSText.h
Controls whether the receiver draws its background.
- (void)setDrawsBackground:(BOOL)flag
If flag is YES, the receiver fills its background with the background color, if flag is NO, it doesn’t.
NSText.h
Controls whether the receiver allows the user to edit its text.
- (void)setEditable:(BOOL)flag
If flag is YES, the receiver allows the user to edit text and attributes; if flag is NO, it doesn’t.
You can change the receiver’s text programmatically regardless of this setting. If the receiver is made editable, it’s also made selectable. NSText objects are by default editable.
NSText.h
Controls whether the receiver interprets Tab, Shift-Tab, and Return (Enter) as cues to end editing and possibly to change the first responder.
- (void)setFieldEditor:(BOOL)flag
If flag is YES, the receiver interprets Tab, Shift-Tab, and Return (Enter) as cues to end editing and possibly to change the first responder; if flag is NO, it doesn’t, instead accepting these characters as text input.
See the NSWindow class specification for more information on field editors. By default, NSText objects don’t behave as field editors.
NSText.hSets the font of all the receiver’s text to aFont.
- (void)setFont:(NSFont *)aFont
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.h
Sets the font of characters within aRange to aFont.
- (void)setFont:(NSFont *)aFont range:(NSRange)aRange
This method applies only to a rich text object.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.hControls whether the receiver changes its width to fit the width of its text.
- (void)setHorizontallyResizable:(BOOL)flag
If flag is YES it does; if flag is NO it doesn’t.
NSText.hControls whether the receiver allows the user to import files by dragging.
- (void)setImportsGraphics:(BOOL)flag
If flag is YES, the receiver allows the user to import files by dragging; if flag is NO, it doesn’t.
If the receiver is set to accept dragged files, it’s also made a rich text object. Subclasses may or may not accept dragged files by default.
NSText.h
Sets the receiver’s maximum size to aSize.
- (void)setMaxSize:(NSSize)aSize
NSText.h
Sets the receiver’s minimum size to aSize.
- (void)setMinSize:(NSSize)aSize
NSText.hControls whether the receiver allows the user to apply attributes to specific ranges of the text.
- (void)setRichText:(BOOL)flag
If flag is YES the receiver allows the user to apply attributes to specific ranges of the text; if flag is NO it doesn’t.
If flag is NO, the receiver is also set not to accept dragged files. Subclasses may or may not let the user apply multiple attributes to the text and accept drag files by default.
NSText.h
Controls whether the receiver allows the user to select its text.
- (void)setSelectable:(BOOL)flag
You can set selections programmatically regardless of this setting. If the receiver is made not selectable, it’s also made not editable. NSText objects are by default editable and selectable.
NSText.h
Selects the receiver’s characters within aRange.
- (void)setSelectedRange:(NSRange)aRange
NSText.h
Replaces the receiver’s entire text with aString, applying the formatting attributes of the old first character to its new contents.
- (void)setString:(NSString *)aString
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.h
Sets the text color of all characters in the receiver to aColor.
- (void)setTextColor:(NSColor *)aColor
Removes the text color attribute if aColor is nil.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.h
Sets the text color of characters within aRange to aColor.
- (void)setTextColor:(NSColor *)aColor range:(NSRange)aRange
Removes the text color attribute if aColor is nil. This method applies only to rich text objects.
This method does not include undo support by default. Clients must invoke shouldChangeTextInRanges:replacementStrings: or shouldChangeTextInRange:replacementString: to include this method in an undoable action.
NSText.hControls whether the receiver uses the Font panel and Font menu.
- (void)setUsesFontPanel:(BOOL)flag
If flag is YES, the receiver responds to messages from the Font panel and from the Font menu and updates the Font panel with the selection font whenever it changes. If flag is NO the receiver doesn’t do any of these actions.
By default, an NSText object uses the Font panel and menu.
NSText.h
Controls whether the receiver changes its height to fit the height of its text.
- (void)setVerticallyResizable:(BOOL)flag
If flag is YES it does; if flag is NO it doesn’t.
NSText.hThis action method opens the Spelling panel, allowing the user to make a correction during spell checking.
- (void)showGuessPanel:(id)sender
NSText.hResizes the receiver to fit its text.
- (void)sizeToFit
The text view will not be sized any smaller than its minimum size, however.
NSText.hReturns the characters of the receiver’s text.
- (NSString *)string
The characters of the receiver’s text.
For performance reasons, this method returns the current backing store of the text object. If you want to maintain a snapshot of this as you manipulate the text storage, you should make a copy of the appropriate substring.
NSText.h
This action method applies a subscript attribute to selected text (or all text if the receiver is a plain text object), lowering its baseline offset by a predefined amount.
- (void)subscript:(id)sender
– subscript:– unscript:– lowerBaseline: (NSTextView)NSText.h
This action method applies a superscript attribute to selected text (or all text if the receiver is a plain text object), raising its baseline offset by a predefined amount.
- (void)superscript:(id)sender
– subscript:– unscript:– raiseBaseline: (NSTextView)NSText.hReturns the color of the receiver’s first character, or for the insertion point if there’s no text.
- (NSColor *)textColor
NSText.hThis action method shows or hides the ruler, if the receiver is enclosed in a scroll view.
- (void)toggleRuler:(id)sender
NSText.h
Adds the underline attribute to the selected text attributes if absent; removes the attribute if present.
- (void)underline:(id)sender
If there is a selection and the first character of the selected range has any form of underline on it, or if there is no selection and the typing attributes have any form of underline, then underline is removed; otherwise a single simple underline is added.
Operates on the selected range if the receiver contains rich text. For plain text the range is the entire contents of the receiver.
NSText.hThis action method removes any superscripting or subscripting from selected text (or all text if the receiver is a plain text object).
- (void)unscript:(id)sender
– subscript:– superscript:– raiseBaseline: (NSTextView)– lowerBaseline: (NSTextView)NSText.h
Returns a Boolean value that indicates whether the receiver uses the Font panel.
- (BOOL)usesFontPanel
YES if the receiver uses the Font panel, otherwise NO.
NSText.hWrites the receiver’s text as RTF with attachments to a file or directory at path.
- (BOOL)writeRTFDToFile:(NSString *)path atomically:(BOOL)atomicFlag
Returns YES on success and NO on failure. If atomicFlag is YES, attempts to write the file safely so that an existing file at path is not overwritten, nor does a new file at path actually get created, unless the write is successful.
NSText.h
Informs the delegate that the text object has begun editing (that the user has begun changing it).
- (void)textDidBeginEditing:(NSNotification *)aNotification
The name of aNotification is NSTextDidBeginEditingNotification.
NSText.hInforms the delegate that the text object has changed its characters or formatting attributes.
- (void)textDidChange:(NSNotification *)aNotification
The name of aNotification is NSTextDidChangeNotification.
NSText.hInforms the delegate that the text object has finished editing (that it has resigned first responder status).
- (void)textDidEndEditing:(NSNotification *)aNotification
The name of aNotification is NSTextDidEndEditingNotification.
NSText.hInvoked when a text object begins to change its text, this method requests permission for aTextObject to begin editing.
- (BOOL)textShouldBeginEditing:(NSText *)aTextObject
If the delegate returns YES, the text object proceeds to make changes. If the delegate returns NO, the text object abandons the editing operation. This method is also invoked when the user drags and drops a file onto the text object.
– makeFirstResponder: (NSWindow)– becomeFirstResponder (NSResponder)NSText.hInvoked from a text object’s implementation of resignFirstResponder, this method requests permission for aTextObject to end editing.
- (BOOL)textShouldEndEditing:(NSText *)aTextObject
If the delegate returns YES, the text object proceeds to finish editing and resign first responder status. If the delegate returns NO, the text object selects all of its text and remains the first responder.
– resignFirstResponder (NSResponder)NSText.hThese constants specify text alignment.
typedef enum _NSTextAlignment { NSLeftTextAlignment = 0, NSRightTextAlignment = 1, NSCenterTextAlignment = 2, NSJustifiedTextAlignment = 3, NSNaturalTextAlignment = 4 } NSTextAlignment;
NSLeftTextAlignmentText is visually left aligned.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSRightTextAlignmentText is visually right aligned.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSCenterTextAlignmentText is visually center aligned.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSJustifiedTextAlignmentText is justified.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSNaturalTextAlignmentUse the natural alignment of the text’s script.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSText.hThese constants specify the writing directions:
typedef enum _NSWritingDirection { NSWritingDirectionNatural = -1, NSWritingDirectionLeftToRight = 0, NSWritingDirectionRightToLeft } NSWritingDirection;
NSWritingDirectionNaturalThe writing direction is determined using the Unicode Bidi Algorithm rules P2 and P3. Default.
Available in Mac OS X v10.4 and later.
Declared in NSText.h.
NSWritingDirectionLeftToRightThe writing direction is left to right.
Available in Mac OS X v10.2 and later.
Declared in NSText.h.
NSWritingDirectionRightToLeftThe writing direction is right to left.
Available in Mac OS X v10.2 and later.
Declared in NSText.h.
NSText.hThese constants specify the reason for a change of editing focus among text fields, in essence answering the question “why am I leaving the field?”
enum {
NSIllegalTextMovement = 0,
NSReturnTextMovement = 0x10,
NSTabTextMovement = 0x11,
NSBacktabTextMovement = 0x12,
NSLeftTextMovement = 0x13,
NSRightTextMovement = 0x14,
NSUpTextMovement = 0x15,
NSDownTextMovement = 0x16,
NSCancelTextMovement = 0x17,
NSOtherTextMovement = 0
};
NSIllegalTextMovementCurrently unused.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSReturnTextMovementThe Return key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSTabTextMovementThe Tab key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSBacktabTextMovementThe Backtab (Shift-Tab) key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSLeftTextMovementThe left arrow key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSRightTextMovementThe right arrow key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSUpTextMovementThe up arrow key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSDownTextMovementThe down arrow key was pressed.
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSCancelTextMovementThe user cancelled the completion.
Available in Mac OS X v10.3 and later.
Declared in NSText.h.
NSOtherTextMovementThe user performed some undefined action.
Available in Mac OS X v10.3 and later.
Declared in NSText.h.
They are the possible values for the NSTextMovement key of the NSTextDidEndEditingNotificationuserInfo dictionary. The field editor makes sure that these are the values sent when the user presses the Tab, Backtab, or Return key while editing. The control then uses this information to decide where to send focus next.
NSText.hThese constants specify several commonly used Unicode characters.
enum {
NSParagraphSeparatorCharacter = 0x2029,
NSLineSeparatorCharacter = 0x2028,
NSTabCharacter = 0x0009,
NSFormFeedCharacter = 0x000c,
NSNewlineCharacter = 0x000a,
NSCarriageReturnCharacter = 0x000d,
NSEnterCharacter = 0x0003,
NSBackspaceCharacter = 0x0008,
NSBackTabCharacter = 0x0019,
NSDeleteCharacter = 0x007f
};
NSParagraphSeparatorCharacterThe paragraph separator character: 0x2029
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSLineSeparatorCharacterThe line separator character: 0x2028
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSTabCharacterThe tab character: 0x0009
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSBackTabCharacterThe back tab character: 0x0019
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSFormFeedCharacterThe form feed character: 0x000c
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSNewlineCharacterThe newline character: 0x000a
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSCarriageReturnCharacterThe carriage return character: 0x000d
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSEnterCharacterThe enter character: 0x0003
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSBackspaceCharacterThe backspace character: 0x0008
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSDeleteCharacterThe delete character: 0x007f
Available in Mac OS X v10.0 and later.
Declared in NSText.h.
NSText.h
Posted when an NSText object begins any operation that changes characters or formatting attributes.
The notification object is the notifying NSText object. This notification does not contain a userInfo dictionary.
NSText.h
Posted after an NSText object performs any operation that changes characters or formatting attributes.
The notification object is the notifying NSText object. This notification does not contain a userInfo dictionary.
NSText.h
Posted when focus leaves an NSText object, whether or not any operation has changed characters or formatting attributes.
The notification object is the notifying NSText object. The userInfo dictionary contains the following information:
Key |
Value |
|---|---|
|
Possible movement code values are described in Movement Codes. |
Note: It is common for NSTextDidEndEditingNotification to be sent without a matching NSTextDidBeginEditingNotification. The begin notification is only sent if the user actually makes changes (that is, types something or changes formatting attributes). However, the end notification is sent when focus leaves the text view, regardless of whether there was a change.
NSTextDidEndEditingNotification is sent, but to tell the difference, the application can listen for NSTextDidBeginEditingNotification.NSText.h
© 2008 Apple Inc. All Rights Reserved. (Last updated: 2008-05-06)