macOS/iOS API解説

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

目次

NSHashGet

ハッシュテーブルのからpointerとマッチするエレメントのポインタを返します
void*  NSHashGet ( 
        NSHashTable *   table , 
        const void *   pointer );

解説

ハッシュテーブルのからpointerとマッチするエレメントのポインタを返します。

返り値

引数

( NSHashTable * )table
( const void * )pointer

クラス

NSHashGet

Function

使用可能

10.0

参照

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
	void *ret;
	NSHashTable *hTable = NSCreateHashTable(NSNonOwnedPointerHashCallBacks, 10);
	NSHashInsert(hTable, @"aaa");
	NSHashInsert(hTable, @"bbb");
	NSHashInsert(hTable, @"ccc");
	
	NSLog(@"%d",sizeof(hTable));
	NSLog(NSStringFromHashTable(hTable));
	
	NSLog(@"%d",sizeof(ret));
	NSLog(@"%p",ret);
	
	ret = NSHashGet(hTable, @"bbb");
	
	NSLog(@"%d",sizeof(ret));
	NSLog(@"%p",ret);
}

@end