macOS/iOS API解説

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

目次

threadDictionary

INDEX>Foundation> NSThread>

スレッドの情報を持った辞書を返します
- (NSMutableDictionary *)threadDictionary

解説

スレッドの情報を持った辞書を返します。

返り値

( NSMutableDictionary * )

NSThreadの辞書

引数

クラス

NSThread

Instance Methods

使用可能

10.0

参照

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
[NSThread detachNewThreadSelector:@selector(threadTask) toTarget:self
withObject:nil];
NSLog([[[NSThread currentThread] threadDictionary] description]);
}
- (void)threadTask
{
    int i;
    NSAutoreleasePool *pool = [NSAutoreleasePool new];

  for (i=1;i<100;i++) {
    NSLog([NSString stringWithFormat:@"%d",i]);
    }

    [pool release];
    [NSThread exit];
}
@end