<!--
{
  "availability" : [
    "iOS: 2.0.0 -",
    "iPadOS: 2.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.5.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/Thread/start()",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSThread(im)start"
  },
  "title" : "start()"
}
-->

# start()

Starts the receiver.

```
func start()
```

## Discussion

This method asynchronously spawns the new thread and invokes the receiver’s [`main()`](/documentation/Foundation/Thread/main()) method on the new thread. The [`isExecuting`](/documentation/Foundation/Thread/isExecuting) property returns <doc://com.apple.documentation/documentation/Swift/true> once the thread starts executing, which may occur after the [`start()`](/documentation/Foundation/Thread/start()) method returns.

If you initialized the receiver with a target and selector, the default [`main()`](/documentation/Foundation/Thread/main()) method invokes that selector automatically.

If this thread is the first thread detached in the application, this method posts the [`NSWillBecomeMultiThreaded`](/documentation/Foundation/NSNotification/Name-swift.struct/NSWillBecomeMultiThreaded) with object `nil` to the default notification center.

## See Also

[`init(target:selector:object:)`](/documentation/Foundation/Thread/init(target:selector:object:))

Returns an `NSThread` object initialized with the given arguments.

[`init()`](/documentation/Foundation/Thread/init())

Returns an initialized `NSThread` object.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)