<!--
{
  "availability" : [
    "iOS: -",
    "iPadOS: -",
    "macCatalyst: -",
    "macOS: -",
    "tvOS: -",
    "visionOS: -",
    "watchOS: -"
  ],
  "documentType" : "symbol",
  "framework" : "CoreFoundation",
  "identifier" : "/documentation/CoreFoundation/CFCopyLocalizedStringFromTableInBundle",
  "metadataVersion" : "0.1.0",
  "role" : "Macro",
  "symbol" : {
    "kind" : "Macro",
    "modules" : [
      "Core Foundation"
    ],
    "preciseIdentifier" : "c:@macro@CFCopyLocalizedStringFromTableInBundle"
  },
  "title" : "CFCopyLocalizedStringFromTableInBundle"
}
-->

# CFCopyLocalizedStringFromTableInBundle

Returns a localized version of the specified string.

```
#define CFCopyLocalizedStringFromTableInBundle(key, tbl, bundle, comment)
```

## Parameters

`key`

The development language version of the string. This string is used as the search key to locate the localized version of the string.

`tbl`

The name of the strings file to search. The name should not include the `strings` filename extension. The case of the string must match that of the file name, even on file systems (such as HFS+) that are not case sensitive with regards to file names

`bundle`

The bundle to examine.

`comment`

A comment to provide the translators with contextual information necessary for proper translation.

## Return Value

The localized version of the requested string, or `key` if no value corresponding to `key` is found. Ownership follows the [The Create Rule](https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFMemoryMgmt/Concepts/Ownership.html#//apple_ref/doc/uid/20001148-103029).

## Discussion

This is a macro variant of [`CFBundleCopyLocalizedString(_:_:_:_:)`](/documentation/CoreFoundation/CFBundleCopyLocalizedString(_:_:_:_:)) for use with the `genstrings` tool.

---

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)