macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:

aTableViewのaTableColumnのaCellでツールチップのように表示される文字列を返します
-(NSString *)tableView:(NSTableView *)aTableView:
                toolTipForCell:(NSCell *)aCell:
                rect:(NSRectPointer)rect:
                tableColumn:(NSTableColumn *)aTableColumn:
                row:(int)row:
                mouseLocation:(NSPoint)mouseLocation:

解説

aTableViewのaTableColumnのaCellでツールチップのように表示される文字列を返します。

返り値

( NSString * )

なし

引数

( NSTableView * )aTableView
( NSCell * )aCell
( NSRectPointer )rect
( NSTableColumn * )aTableColumn
( int )row
( NSPoint )mouseLocation

フレームワーク

ApplicationKit

クラス

NSTableView

Instance Methods

使用可能

10.4

参照

例文