<!--
{
  "availability" : [
    "iOS: 2.0.0 -",
    "iPadOS: 2.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.0.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSString/init(charactersNoCopy:length:freeWhenDone:)",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSString(im)initWithCharactersNoCopy:length:freeWhenDone:"
  },
  "title" : "init(charactersNoCopy:length:freeWhenDone:)"
}
-->

# init(charactersNoCopy:length:freeWhenDone:)

Returns an initialized `NSString` object that contains a given number of characters from a given C array of UTF-16 code units.

```
convenience init(charactersNoCopy characters: UnsafeMutablePointer<unichar>, length: Int, freeWhenDone freeBuffer: Bool)
```

## Parameters

`characters`

A C array of UTF-16 code units.

`length`

The number of characters to use from `characters`.

`freeBuffer`

If <doc://com.apple.documentation/documentation/Swift/true>, the receiver releases the memory with `free()` when it no longer needs the data; if <doc://com.apple.documentation/documentation/Swift/false> it won’t.

## Return Value

An initialized `NSString` object that contains `length` characters from `characters`. The returned object may be different from the original receiver.

## Discussion

If an error occurs during the creation of the string, then `bytes` is not freed even if `flag` is <doc://com.apple.documentation/documentation/Swift/true>. In this case, the caller is responsible for freeing the buffer. This allows the caller to continue trying to create a string with the buffer, without having the buffer deallocated.

## See Also

[`+  stringWithCharacters:length:`](/documentation/Foundation/NSString/stringWithCharacters:length:)

Returns a string containing a given number of characters taken from a given C array of UTF-16 code units.



---

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)