Mac OS X Reference Library Apple Developer Connection spyglass button

NSTableViewDataSource Protocol Reference

Conforms to
Framework
/System/Library/Frameworks/AppKit.framework
Availability
Available in Mac OS X v10.6 and later.
Companion guide
Declared in
NSTableView.h
Related sample code

Overview

The NSTableViewDataSource protocol declares the methods that an instance of NSTableView uses to provide and access the contents of its data source object.

Note:  Some of the methods in this protocol, such as tableView:objectValueForTableColumn:row: and numberOfRowsInTableView: along with other methods that return data, are called very frequently, so they must be efficient.

Tasks

Getting Values

Setting Values

Dragging

Sorting

Instance Methods

numberOfRowsInTableView:

Returns the number of records managed for aTableView by the data source object.

- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView

Parameters
aTableView

The table view that sent the message.

Return Value

The number of rows in aTableView.

Discussion

An instance of NSTableView uses this method to determine how many rows it should create and display. Your numberOfRowsInTableView: implementation is called very frequently, so it must be efficient.

Note: This method is optional if your application is using Cocoa bindings for providing data to the table view, otherwise it must be implemented.

Availability
  • Available in Mac OS X v10.0 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:acceptDrop:row:dropOperation:

Invoked by aTableView when the mouse button is released over a table view that previously decided to allow a drop.

- (BOOL)tableView:(NSTableView *)aTableView acceptDrop:(id < NSDraggingInfo >)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)operation

Parameters
aTableView

The table view that sent the message.

info

An object that contains more information about this dragging operation.

row

The index of the proposed target row.

operation

The type of dragging operation.

Return Value

YES if the drop operation was successful, otherwise NO.

Discussion

The data source should incorporate the data from the dragging pasteboard in the implementation of this method. You can get the data for the drop operation from info using the draggingPasteboard method.

To accept a drop on the second row, row would be 2 and operation would be NSTableViewDropOn. To accept a drop below the last row, row would be [aTableView numberOfRows] and operation would be NSTableViewDropAbove.

Availability
  • Available in Mac OS X v10.0 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:

Returns an array of filenames that represent theindexSet rows for a drag to dropDestination.

- (NSArray *)tableView:(NSTableView *)aTableView namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination forDraggedRowsWithIndexes:(NSIndexSet *)indexSet

Parameters
aTableView

The table view that sent the message.

dropDestination

The drop location where the files are created.

indexSet

The indexes of the items being dragged.

Return Value

An array of filenames (not full paths) for the created files that the receiver promises to create.

Discussion

This method is called when a destination has accepted a promise drag.

For more information on file promise dragging, see documentation on the NSDraggingSource protocol and namesOfPromisedFilesDroppedAtDestination:.

Availability
  • Available in Mac OS X v10.4 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:objectValueForTableColumn:row:

Invoked by the table view to return the data object associated with the specified row and column.

- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex

Parameters
aTableView

The table view that sent the message.

aTableColumn

A column in in aTableView.

rowIndex

The row of the item in aTableColumn.

Return Value

An item in the data source in the specified tableColumn of the view.

Discussion

tableView:objectValueForTableColumn:row: is called each time the table cell needs to be redisplayed, so it must be efficient.

Note: This method is optional if your application is using Cocoa bindings for providing data to the table view, otherwise it must be implemented.

Availability
  • Available in Mac OS X v10.0 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:setObjectValue:forTableColumn:row:

Sets the data object for an item in a given row in a given column.

- (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex

Parameters
aTableView

The table view that sent the message.

anObject

The new value for the item.

aTableColumn

A column in aTableView.

rowIndex

The row of the item in aTableColumn.

Availability
  • Available in Mac OS X v10.0 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:sortDescriptorsDidChange:

Invoked by aTableView to indicate that sorting may need to be done.

- (void)tableView:(NSTableView *)aTableView sortDescriptorsDidChange:(NSArray *)oldDescriptors

Parameters
aTableView

The table view that sent the message.

oldDescriptors

An array that contains the previous descriptors.

Discussion

The data source typically sorts and reloads the data, and adjusts the selections accordingly. If you need to know the current sort descriptors and the data source does not manage them itself, you can get the current sort descriptors by sending aTableView a sortDescriptors message.

Availability
  • Available in Mac OS X v10.3 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:validateDrop:proposedRow:proposedDropOperation:

Used by aTableView to determine a valid drop target.

- (NSDragOperation)tableView:(NSTableView *)aTableView validateDrop:(id < NSDraggingInfo >)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)operation

Parameters
aTableView

The table view that sent the message.

info

An object that contains more information about this dragging operation.

row

The index of the proposed target row.

operation

The type of dragging operation proposed.

Return Value

The dragging operation the data source will perform.

Discussion

The data source may “retarget” a drop if desired by calling setDropRow:dropOperation: and returning something other than NSDragOperationNone. One may choose to retarget for various reasons (e.g. for better visual feedback when inserting into a sorted position).

To propose a drop on the second row, row would be 2 and operation would be NSTableViewDropOn. To propose a drop below the last row, row would be [aTableView numberOfRows] and operation would be NSTableViewDropAbove.

Availability
  • Available in Mac OS X v10.0 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h

tableView:writeRowsWithIndexes:toPasteboard:

Returns a Boolean value that indicates whether a drag operation is allowed.

- (BOOL)tableView:(NSTableView *)aTableView writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard

Parameters
aTableView

The table view that sent the message.

rowIndexes

An index set of row numbers that will be participating in the drag.

pboard

The pasteboard to which to write the drag data.

Return Value

YES if the drag operation is allowed, NO otherwise.

Discussion

Invoked by aTableView after it has been determined that a drag should begin, but before the drag has been started.

To refuse the drag, return NO. To start a drag, return YES and place the drag data onto pboard (data, owner, and so on). The drag image and other drag-related information will be set up and provided by the table view once this call returns with YES.

Availability
  • Available in Mac OS X v10.4 and later.
  • Available as part of an informal protocol prior to Mac OS X v10.6.
Declared In
NSTableView.h


Last updated: 2009-10-19

Did this document help you? Yes It's good, but... Not helpful...