Next Page > Hide TOC

NSThread Class Reference

Inherits from
Conforms to
Framework
/System/Library/Frameworks/Foundation.framework
Availability
Available in Mac OS X v10.0 and later.
Companion guide
Declared in
NSThread.h
Related sample code

Overview

An NSThread object controls a thread of execution. Use this class when you want to have an Objective-C method run in its own thread of execution. Threads are especially useful when you need to perform a lengthy task, but don’t want it to block the execution of the rest of the application. In particular, you can use threads to avoid blocking the main thread of the application, which handles user interface and event-related actions. Threads can also be used to divide a large job into several smaller jobs, which can lead to performance increases on multi-core computers.

Prior to Mac OS X v10.5, the only way to start a new thread is to use the detachNewThreadSelector:toTarget:withObject: method. In Mac OS X v10.5 and later, you can create instances of NSThread and start them at a later time using the start method.

In Mac OS Xv10.5, the NSThread class supports semantics similar to those of NSOperation for monitoring the runtime condition of a thread. You can use these semantics to cancel the execution of a thread or determine if the thread is still executing or has finished its task. Canceling a thread requires support from your thread code; see the description for cancel for more information.

Subclassing Notes

In Mac OS X v10.5 and later, you can subclass NSThread and override the main method to implement your thread’s main entry point. If you override main, you do not need to invoke the inherited behavior by calling super.

Tasks

Initializing an NSThread Object

Starting a Thread

Stopping a Thread

Determining the Thread’s Execution State

Working with the Main Thread

Querying the Environment

Working with Thread Properties

Working with Thread Priorities

Class Methods

callStackReturnAddresses

Returns an array containing the call stack return addresses.

+ (NSArray *)callStackReturnAddresses

Return Value

An array containing the call stack return addresses. This value is nil by default.

Availability
Declared In
NSThread.h

currentThread

Returns the thread object representing the current thread of execution.

+ (NSThread *)currentThread

Return Value

A thread object representing the current thread of execution.

Availability
See Also
Declared In
NSThread.h

detachNewThreadSelector:toTarget:withObject:

Detaches a new thread and uses the specified selector as the thread entry point.

+ (void)detachNewThreadSelector:(SEL)aSelector toTarget:(id)aTarget withObject:(id)anArgument

Parameters
aSelector

The selector for the message to send to the target. This selector must take only one argument and must not have a return value.

aTarget

The object that will receive the message aSelector on the new thread.

anArgument

The single argument passed to the target. May be nil.

Discussion

For non garbage-collected applications, the method aSelector is responsible for setting up an autorelease pool for the newly detached thread and freeing that pool before it exits. Garbage-collected applications do not need to create an autorelease pool.

The objects aTarget and anArgument are retained during the execution of the detached thread, then released. The detached thread is exited (using the exit class method) as soon as aTarget has completed executing the aSelector method.

If this thread is the first thread detached in the application, this method posts the NSWillBecomeMultiThreadedNotification with object nil to the default notification center.

Availability
See Also
Related Sample Code
Declared In
NSThread.h

exit

Terminates the current thread.

+ (void)exit

Discussion

This method uses the currentThread class method to access the current thread. Before exiting the thread, this method posts the NSThreadWillExitNotification with the thread being exited to the default notification center. Because notifications are delivered synchronously, all observers of NSThreadWillExitNotification are guaranteed to receive the notification before the thread exits.

Invoking this method should be avoided as it does not give your thread a chance to clean up any resources it allocated during its execution.

Availability
See Also
Related Sample Code
Declared In
NSThread.h

isMainThread

Returns a Boolean value that indicates whether the current thread is the main thread.

+ (BOOL)isMainThread

Return Value

YES if the current thread is the main thread, otherwise NO.

Availability
See Also
Declared In
NSThread.h

isMultiThreaded

Returns whether the application is multithreaded.

+ (BOOL)isMultiThreaded

Return Value

YES if the application is multithreaded, NO otherwise.

Discussion

An application is considered multithreaded if a thread was ever detached from the main thread using either detachNewThreadSelector:toTarget:withObject: or start. If you detached a thread in your application using a non-Cocoa API, such as the POSIX or Multiprocessing Services APIs, this method could still return NO. The detached thread does not have to be currently running for the application to be considered multithreaded—this method only indicates whether a single thread has been spawned.

Availability
Declared In
NSThread.h

mainThread

Returns the NSThread object representing the main thread.

+ (NSThread *)mainThread

Return Value

The NSThread object representing the main thread.

Availability
See Also
Declared In
NSThread.h

setThreadPriority:

Sets the current thread’s priority.

+ (BOOL)setThreadPriority:(double)priority

Parameters
priority

The new priority, specified with a floating point number from 0.0 to 1.0, where 1.0 is highest priority.

Return Value

YES if the priority assignment succeeded, NO otherwise.

Discussion

The priorities in this range are mapped to the operating system's priority values.

Availability
See Also
Related Sample Code
Declared In
NSThread.h

sleepForTimeInterval:

Sleeps the thread for a given time interval.

+ (void)sleepForTimeInterval:(NSTimeInterval)ti

Parameters
ti

The duration of the sleep.

Discussion

No run loop processing occurs while the thread is blocked.

Availability
Declared In
NSThread.h

sleepUntilDate:

Blocks the current thread until the time specified.

+ (void)sleepUntilDate:(NSDate *)aDate

Parameters
aDate

The time at which to resume processing.

Discussion

No run loop processing occurs while the thread is blocked.

Availability
See Also
Related Sample Code
Declared In
NSThread.h

threadPriority

Returns the current thread’s priority.

+ (double)threadPriority

Return Value

The current thread’s priority, which is specified by a floating point number from 0.0 to 1.0, where 1.0 is highest priority.

Discussion

The priorities in this range are mapped to the operating system's priority values. A “typical” thread priority might be 0.5, but because the priority is determined by the kernel, there is no guarantee what this value actually will be.

Availability
See Also
Related Sample Code
Declared In
NSThread.h

Instance Methods

cancel

Changes the cancelled state of the receiver to indicate that it should exit.

- (void)cancel

Discussion

The semantics of this method are the same as those used for the NSOperation object. This method sets state information in the receiver that is then reflected by the isCancelled method. Threads that support cancellation should periodically call the isCancelled method to determine if the thread has in fact been cancelled, and exit if it has been.

For more information about cancellation and operation objects, see NSOperation Class Reference.

Availability
See Also
Declared In
NSThread.h

init

Returns an initialized NSThread object.

- (id)init

Return Value

An initialized NSThread object.

Discussion

This is the designated initializer for NSThread.

Availability
See Also
Declared In
NSThread.h

initWithTarget:selector:object:

Returns an NSThread object initialized with the given arguments.

- (id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument

Parameters
target

The object to which the message specified by selector is sent.

selector

The selector for the message to send to target. This selector must take only one argument and must not have a return value.

argument

The single argument passed to the target. May be nil.

Return Value

An NSThread object initialized with the given arguments.

Discussion

For non garbage-collected applications, the method selector is responsible for setting up an autorelease pool for the newly detached thread and freeing that pool before it exits. Garbage-collected applications do not need to create an autorelease pool.

The objects target and argument are retained during the execution of the detached thread. They are released when the thread finally exits.

Availability
See Also
Declared In
NSThread.h

isCancelled

Returns a Boolean value that indicates whether the receiver is cancelled.

- (BOOL)isCancelled

Return Value

YES if the receiver has been cancelled, otherwise NO.

Discussion

If your thread supports cancellation, it should call this method periodically and exit if it ever returns YES.

Availability
See Also
Declared In
NSThread.h

isExecuting

Returns a Boolean value that indicates whether the receiver is executing.

- (BOOL)isExecuting

Return Value

YES if the receiver is executing, otherwise NO.

Availability
See Also
Declared In
NSThread.h

isFinished

Returns a Boolean value that indicates whether the receiver has finished execution.

- (BOOL)isFinished

Return Value

YES if the receiver has finished execution, otherwise NO.

Availability
See Also
Declared In
NSThread.h

isMainThread

Returns a Boolean value that indicates whether the receiver is the main thread.

- (BOOL)isMainThread

Return Value

YES if the receiver is the main thread, otherwise NO.

Availability
Declared In
NSThread.h

main

The main entry point routine for the thread.

- (void)main

Discussion

The default implementation of this method takes the target and selector used to initialize the receiver and invokes the selector on the specified target. If you subclass NSThread, you can override this method and use it to implement the main body of your thread instead. If you do so, you do not need to invoke super.

You should never invoke this method directly. You should always start your thread by invoking the start method.

Availability
See Also
Declared In
NSThread.h

name

Returns the name of the receiver.

- (NSString *)name

Return Value

The name of the receiver.

Availability
See Also
Declared In
NSThread.h

setName:

Sets the name of the receiver.

- (void)setName:(NSString *)n

Parameters
n

The name for the receiver.

Availability
See Also
Declared In
NSThread.h

setStackSize:

Sets the stack size of the receiver.

- (void)setStackSize:(NSUInteger)s

Parameters
s

The stack size for the receiver. This value must be a multiple of 4KB.

Discussion

You must call this method before starting your thread. Setting the stack size after the thread has started changes the attribute size (which is reflected by the stackSize method), but it does not affect the actual number of pages set aside for the thread.

Availability
See Also
Declared In
NSThread.h

stackSize

Returns the stack size of the receiver.

- (NSUInteger)stackSize

Return Value

The stack size of the receiver.

Availability
See Also
Declared In
NSThread.h

start

Starts the receiver.

- (void)start

Discussion

This method spawns the new thread and invokes the receiver’s main method on the new thread. If you initialized the receiver with a target and selector, the default main method invokes that selector automatically.

If this thread is the first thread detached in the application, this method posts the NSWillBecomeMultiThreadedNotification with object nil to the default notification center.

Availability
See Also
Declared In
NSThread.h

threadDictionary

Returns the thread object's dictionary.

- (NSMutableDictionary *)threadDictionary

Return Value

The thread object's dictionary.

Discussion

You can use the returned dictionary to store thread-specific data. The thread dictionary is not used during any manipulations of the NSThread object—it is simply a place where you can store any interesting data. For example, Foundation uses it to store the thread’s default NSConnection and NSAssertionHandler instances. You may define your own keys for the dictionary.

Availability
Declared In
NSThread.h

Notifications

NSDidBecomeSingleThreadedNotification

Not implemented.

Availability
Declared In
NSThread.h

NSThreadWillExitNotification

An NSThread object posts this notification when it receives the exit message, before the thread exits. Observer methods invoked to receive this notification execute in the exiting thread, before it exits.

The notification object is the exiting NSThread object. This notification does not contain a userInfo dictionary.

Availability
Declared In
NSThread.h

NSWillBecomeMultiThreadedNotification

Posted when the first thread is detached from the current thread. The NSThread class posts this notification at most once—the first time a thread is detached using detachNewThreadSelector:toTarget:withObject: or the start method. Subsequent invocations of those methods do not post this notification. Observers of this notification have their notification method invoked in the main thread, not the new thread. The observer notification methods always execute before the new thread begins executing.

This notification does not contain a notification object or a userInfo dictionary.

Availability
Declared In
NSThread.h

Next Page > Hide TOC


© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-12-11)


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.