Deprecated NSTableColumn Methods

A method identified as deprecated has been superseded and may become unsupported in the future.

Deprecated in Mac OS X v10.4

isResizable

Returns YES if the user is allowed to resize the receiver in its NSTableView, NO otherwise. (Deprecated in Mac OS X v10.4.)

- (BOOL)isResizable

Discussion

You can change the size programmatically regardless of this setting.

This method is deprecated. You should use resizingMask instead.

Availability
See Also
Declared In
NSTableColumn.h

setResizable:

Sets whether the user can resize the receiver in its NSTableView. (Deprecated in Mac OS X v10.4.)

- (void)setResizable:(BOOL)flag

Discussion

If flag is YES the user can resize the receiver; if flag is NO the user can’t resize it. You can always set the size programmatically.

This method is deprecated. You should use setResizingMask: instead.

Availability
See Also
Declared In
NSTableColumn.h


© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-10-31)