NSThreadを使ってみる
公開日:
:
最終更新日:2011/04/15
cocoa
記事内に広告を含む場合があります。記事内で紹介する商品を購入することで、当サイトに売り上げの一部が還元されることがあります。
threadを起動
[NSThread detachNewThreadSelector:@selector(MyInstanceThreadMethod:)
toTarget:self withObject:self];
threadの処理を記述
- (void)MyInstanceThreadMethod:(id)param
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int i;
for(i=0; i<60*60*24; i++){
[NSThread sleepForTimeInterval:1.0];
selectedIndex = i%5;
NSLog(@"%d", i%5);
}
[pool release];
}
関連記事
- PREV
- QTCaptureLayerがすごく簡単な件について
- NEXT
- NSTimerを使ってみる