| 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 |
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.
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.
Returns an array containing the call stack return addresses.
+ (NSArray *)callStackReturnAddresses
An array containing the call stack return addresses. This value is nil by default.
NSThread.h
Returns the thread object representing the current thread of execution.
+ (NSThread *)currentThread
A thread object representing the current thread of execution.
NSThread.h
Detaches a new thread and uses the specified selector as the thread entry point.
+ (void)detachNewThreadSelector:(SEL)aSelector toTarget:(id)aTarget withObject:(id)anArgument
The selector for the message to send to the target. This selector must take only one argument and must not have a return value.
The object that will receive the message aSelector on the new thread.
The single argument passed to the target. May be nil.
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.
NSThread.h
Terminates the current thread.
+ (void)exit
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.
NSThread.hReturns a Boolean value that indicates whether the current thread is the main thread.
+ (BOOL)isMainThread
YES if the current thread is the main thread, otherwise NO.
NSThread.h
Returns whether the application is multithreaded.
+ (BOOL)isMultiThreaded
YES if the application is multithreaded, NO otherwise.
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.
NSThread.hReturns the NSThread object representing the main thread.
+ (NSThread *)mainThread
The NSThread object representing the main thread.
NSThread.h
Sets the current thread’s priority.
+ (BOOL)setThreadPriority:(double)priority
The new priority, specified with a floating point number from 0.0 to 1.0, where 1.0 is highest priority.
YES if the priority assignment succeeded, NO otherwise.
The priorities in this range are mapped to the operating system's priority values.
NSThread.hSleeps the thread for a given time interval.
+ (void)sleepForTimeInterval:(NSTimeInterval)ti
The duration of the sleep.
No run loop processing occurs while the thread is blocked.
NSThread.h
Blocks the current thread until the time specified.
+ (void)sleepUntilDate:(NSDate *)aDate
The time at which to resume processing.
No run loop processing occurs while the thread is blocked.
NSThread.h
Returns the current thread’s priority.
+ (double)threadPriority
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.
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.
NSThread.hChanges the cancelled state of the receiver to indicate that it should exit.
- (void)cancel
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.
NSThread.hReturns an initialized NSThread object.
- (id)init
An initialized NSThread object.
This is the designated initializer for NSThread.
NSThread.hReturns an NSThread object initialized with the given arguments.
- (id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument
The object to which the message specified by selector is sent.
The selector for the message to send to target. This selector must take only one argument and must not have a return value.
The single argument passed to the target. May be nil.
An NSThread object initialized with the given arguments.
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.
NSThread.hReturns a Boolean value that indicates whether the receiver is cancelled.
- (BOOL)isCancelled
YES if the receiver has been cancelled, otherwise NO.
If your thread supports cancellation, it should call this method periodically and exit if it ever returns YES.
NSThread.hReturns a Boolean value that indicates whether the receiver is executing.
- (BOOL)isExecuting
YES if the receiver is executing, otherwise NO.
NSThread.hReturns a Boolean value that indicates whether the receiver has finished execution.
- (BOOL)isFinished
YES if the receiver has finished execution, otherwise NO.
NSThread.hReturns a Boolean value that indicates whether the receiver is the main thread.
- (BOOL)isMainThread
YES if the receiver is the main thread, otherwise NO.
NSThread.hThe main entry point routine for the thread.
- (void)main
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.
NSThread.hReturns the name of the receiver.
- (NSString *)name
The name of the receiver.
NSThread.hSets the name of the receiver.
- (void)setName:(NSString *)n
The name for the receiver.
NSThread.hSets the stack size of the receiver.
- (void)setStackSize:(NSUInteger)s
The stack size for the receiver. This value must be a multiple of 4KB.
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.
NSThread.hReturns the stack size of the receiver.
- (NSUInteger)stackSize
The stack size of the receiver.
NSThread.hStarts the receiver.
- (void)start
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.
NSThread.h
Returns the thread object's dictionary.
- (NSMutableDictionary *)threadDictionary
The thread object's dictionary.
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.
NSThread.h
Not implemented.
NSThread.h
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.
NSThread.h
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.
NSThread.h
© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-12-11)