NSLayoutManagerDelegate Protocol Reference
| Conforms to | |
| Framework | /System/Library/Frameworks/AppKit.framework |
| Availability | Available in OS X v10.6 and later. |
| Declared in | NSLayoutManager.h |
| Companion guides | |
Overview
The NSLayoutManagerDelegate protocol defines the optional methods implemented by delegates of NSLayoutManager objects.
Tasks
Invalidating Glyphs and Layout
Handling Layout for Text Containers
Managing Temporary Attribute Support
Instance Methods
layoutManager:didCompleteLayoutForTextContainer:atEnd:
Informs the delegate that the given layout manager has finished laying out text in the given text container.
Parameters
- aLayoutManager
The layout manager doing the layout.
- aTextContainer
The text container in which layout is complete. If
nil, if there aren’t enough containers to hold all the text; the delegate can use this information as a cue to add another text container.- flag
If
YES, aLayoutManager is finished laying out its text—this also means that aTextContainer is the final text container used by the layout manager. Delegates can use this information to show an indicator or background or to enable or disable a button that forces immediate layout of text.
Discussion
This message is sent whenever a text container has been filled. This method can be useful for paginating.
Availability
- Available in OS X v10.0 and later.
- Available as part of an informal protocol prior to OS X v10.6.
Declared In
NSLayoutManager.hlayoutManager:shouldUseTemporaryAttributes:forDrawingToScreen:atCharacterIndex:effectiveRange:
Sent when the layout manager is drawing and needs to decide whether or not to use temporary attributes.
Parameters
- layoutManager
The layout manager sending the message.
- attrs
The temporary attributes currently in effect for the given character range.
- toScreen
YESif the layout manager is drawing to the screen; otherwise,NO.- charIndex
Index of the first character in the range being drawn.
- effectiveCharRange
On input and output, the effective range to which the temporary attributes apply.
Return Value
The temporary attributes for the layout manager to use, or nil if no temporary attributes are to be used.
Discussion
The default behavior, if this method is not implemented, is to use temporary attributes only when drawing to the screen, so an implementation to match that behavior would return attrs if toScreen is YES and nil otherwise, without changing effectiveCharRange.
Availability
- Available in OS X v10.5 and later.
- Available as part of an informal protocol prior to OS X v10.6.
Declared In
NSLayoutManager.hlayoutManagerDidInvalidateLayout:
Informs the delegate that the given layout manager has invalidated layout information (not glyph information).
Parameters
- sender
The layout manager that invalidated layout.
Discussion
This method is invoked only when layout was complete and then became invalidated for some reason. Delegates can use this information to show an indicator of background layout or to enable a button that forces immediate layout of text.
Availability
- Available in OS X v10.0 and later.
- Available as part of an informal protocol prior to OS X v10.6.
Declared In
NSLayoutManager.h© 2009 Apple Inc. All Rights Reserved. (Last updated: 2009-05-28)