macOS/iOS API解説

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

目次

NSTokenFieldCell

tokenFieldCell:writeRepresentedObjects:toPasteboard:

** -(BOOL)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: writeRepresentedObjects:(NSArray *)objects: toPasteboard:(NSPasteboard *)pboard: 解説 デリゲートでの実装 返り値 ( BOOL ) YES/NO 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSArra…

tokenFieldCell:styleForRepresentedObject:

** -(NSTokenStyle)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: styleForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 返り値 ( NSTokenStyle ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObject フ…

tokenFieldCell:shouldAddObjects:atIndex:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: shouldAddObjects:(NSArray *)tokens: atIndex:(unsigned)index: 解説 デリゲートでの実装 返り値 ( NSArray * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSArray * )tokens …

tokenFieldCell:representedObjectForEditingString:

** -(id)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: representedObjectForEditingString:(NSString *)editingString: 解説 デリゲートでの実装 返り値 ( id ) オブジェクト() 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSString * )editingS…

tokenFieldCell:readFromPasteboard:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: readFromPasteboard:(NSPasteboard *)pboard: 解説 デリゲートでの実装 ペーストボードを呼んだデータで表現される オブジェクトの配列を返します。 返り値 ( NSArray * ) なし 引数 ( N…

tokenFieldCell:menuForRepresentedObject:

** -(NSMenu *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: menuForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 representedObjectにメニューを提供 返されたメニューは自動解放される デフォルトではメニューを返さない。 …

tokenFieldCell:hasMenuForRepresentedObject:

** -(BOOL)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: hasMenuForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 representedObjectがメニューを提供する デフォルトではメニューはない。 返り値 ( BOOL ) YES/NO 引数 ( NSTo…

tokenFieldCell:editingStringForRepresentedObject:

** -(NSString *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: editingStringForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 返り値 ( NSString * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObjec…

tokenFieldCell:displayStringForRepresentedObject:

** -(NSString *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: displayStringForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 返り値 ( NSString * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObjec…

tokenFieldCell:completionsForSubstring:indexOfToken:indexOfSelectedItem:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: completionsForSubstring:(NSString *)substring: indexOfToken:(int)tokenIndex: indexOfSelectedItem:(int *)selectedIndex: 解説 デリゲートでの実装 返り値 ( NSArray * ) なし 引数…

tokenStyle

トークンスタイルを返します 解説 トークンスタイルを返します。 返り値 ( NSTokenStyle ) なし 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 10.4 参照 -setTokenStyle: 例文

tokenizingCharacterSet

レシーバーのトークナイズ文字セットを返します 解説 レシーバーのトークナイズ文字セットを返します。 返り値 ( NSCharacterSet * ) なし 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 10.4 参照 -setTokenizing…

setTokenizingCharacterSet:

トークナイズ文字セットをセットします -(void)setTokenizingCharacterSet:(NSCharacterSet *)characterSet: 解説 トークナイズ文字セットをセットします。 返り値 ( void ) なし 引数 ( NSCharacterSet * )characterSet フレームワーク ApplicationKit クラ…

setDelegate:

デリゲートをセットします -(void)setDelegate:(id)anObject: 解説 デリゲートをセットします。 返り値 ( void ) なし 引数 ( id )anObject フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 10.4 参照 -delegate 例文

setCompletionDelay:

レシーバーの完了遅れをセットします -(void)setCompletionDelay:(NSTimeInterval)delay: 解説 レシーバーの完了遅れをセットします。 返り値 ( void ) なし 引数 ( NSTimeInterval )delay フレームワーク ApplicationKit クラス NSTokenFieldCell Instance …

setTokenStyle:

トークンスタイルをセットします -(void)setTokenStyle:(NSTokenStyle)style: 解説 トークンスタイルをセットします。 返り値 ( void ) なし 引数 ( NSTokenStyle )style フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 …

delegate

デリゲートを返します 解説 デリゲートを返します。 返り値 ( id ) オブジェクト() 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 10.4 参照 -setDelegate: 例文

completionDelay

** 解説 トークンになる遅れを返します。 返り値 ( NSTimeInterval ) なし 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Instance Methods 使用可能 10.4 参照 -setCompletionDelay: +defaultCompletionDelay 例文

defaultTokenizingCharacterSet

** 解説 デフォルトのトークナイズ文字セットを返します。デフォルトのトークナイズ文字セットは「,」 返り値 ( NSCharacterSet * ) なし 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Class Methods 使用可能 10.4 参照 例文

defaultCompletionDelay

デフォルトの完了遅れを返します 解説 デフォルトの完了遅れを返します。 デフォルトの完了遅れは0です。 返り値 ( NSTimeInterval ) なし 引数 フレームワーク ApplicationKit クラス NSTokenFieldCell Class Methods 使用可能 10.4 参照 例文

tokenFieldCell:writeRepresentedObjects:toPasteboard:

** -(BOOL)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: writeRepresentedObjects:(NSArray *)objects: toPasteboard:(NSPasteboard *)pboard: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSArray * )obje…

tokenFieldCell:styleForRepresentedObject:

** -(NSTokenStyle)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: styleForRepresentedObject:(id)representedObject: 解説 調査中... 返り値 ( NSTokenStyle ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObject フレームワ…

tokenFieldCell:shouldAddObjects:atIndex:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: shouldAddObjects:(NSArray *)tokens: atIndex:(unsigned)index: 解説 調査中... 返り値 ( NSArray * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSArray * )tokens ( unsigne…

tokenFieldCell:representedObjectForEditingString:

** -(id)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: representedObjectForEditingString:(NSString *)editingString: 解説 調査中... 返り値 ( id ) オブジェクト() 引数 ( NSTokenFieldCell * )tokenFieldCell ( NSString * )editingString フ…

tokenFieldCell:readFromPasteboard:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: readFromPasteboard:(NSPasteboard *)pboard: 解説 調査中... トークン不フィールドでペーストボードから読まれた時に呼び出されます。 返り値 ( NSArray * ) なし 引数 ( NSTokenFieldC…

tokenFieldCell:menuForRepresentedObject:

** -(NSMenu *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: menuForRepresentedObject:(id)representedObject: 解説 調査中... トークンフィールドでオブジェクトのメニューが返されます。 返り値 ( NSMenu * ) なし 引数 ( NSTokenFieldCell * )to…

tokenFieldCell:hasMenuForRepresentedObject:

** -(BOOL)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: hasMenuForRepresentedObject:(id)representedObject: 解説 デリゲートでの実装 representedObjectがmenuを提供するかを指定する デフォルトではトークンはメニューを持たない。 返り値 ( BOO…

tokenFieldCell:editingStringForRepresentedObject:

** -(NSString *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: editingStringForRepresentedObject:(id)representedObject: 解説 調査中... 返り値 ( NSString * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObject フレー…

tokenFieldCell:displayStringForRepresentedObject:

** -(NSString *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: displayStringForRepresentedObject:(id)representedObject: 解説 調査中... 返り値 ( NSString * ) なし 引数 ( NSTokenFieldCell * )tokenFieldCell ( id )representedObject フレー…

tokenFieldCell:completionsForSubstring:indexOfToken:indexOfSelectedItem:

** -(NSArray *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell: completionsForSubstring:(NSString *)substring: indexOfToken:(int)tokenIndex: indexOfSelectedItem:(int *)selectedIndex: 解説 調査中... トークンフィールドで、入力が完了した時…