MLKitLanguageID Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
Type Definitions
The following type definitions are available globally.
-
A block that handles a language identification result.
Declaration
Objective-C
typedef
void
(
^
MLKIdentifyLanguageCallback
)(
NSString
*
_Nullable
,
NSError
*
_Nullable
)
Parameters
-
A block that handles the result of identifying possible languages.
Declaration
Objective-C
typedef
void
(
^
MLKIdentifyPossibleLanguagesCallback
)(
NSArray
<
MLKIdentifiedLanguage
*>
*
_Nullable
,
NSError
*
_Nullable
)
Parameters
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["\u003cp\u003eThis documentation details globally available type definitions for language identification.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eMLKIdentifyLanguageCallback\u003c/code\u003e is a block that handles the result of language identification, providing the identified language tag or an error.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eMLKIdentifyPossibleLanguagesCallback\u003c/code\u003e is a block that handles the result of identifying possible languages, providing a list of identified languages or an error.\u003c/p\u003e\n"]]],[],null,["# MLKitLanguageID Framework Reference\n\nType Definitions\n================\n\nThe following type definitions are available globally.\n- `\n ``\n ``\n `\n\n ### [MLKIdentifyLanguageCallback](#/c:MLKLanguageIdentification.h@T@MLKIdentifyLanguageCallback)\n\n `\n ` \n A block that handles a language identification result. \n\n #### Declaration\n\n Objective-C \n\n typedef void (^MLKIdentifyLanguageCallback)(NSString *_Nullable,\n NSError *_Nullable)\n\n #### Parameters\n\n |---------------------|--------------------------------------------------------------------------------------------------------------------------------------------|\n | ` `*languageTag*` ` | The identified language tag for the text, `IdentifiedLanguage.undetermined` if no language was identified, or `nil` if there was an error. |\n | ` `*error*` ` | The error or `nil`. |\n\n- `\n ``\n ``\n `\n\n ### [MLKIdentifyPossibleLanguagesCallback](#/c:MLKLanguageIdentification.h@T@MLKIdentifyPossibleLanguagesCallback)\n\n `\n ` \n A block that handles the result of identifying possible languages. \n\n #### Declaration\n\n Objective-C \n\n typedef void (^MLKIdentifyPossibleLanguagesCallback)(\n NSArray\u003c/ml-kit/reference/ios/mlkitlanguageid/api/reference/Classes/MLKIdentifiedLanguage *\u003e *_Nullable, NSError *_Nullable)\n\n #### Parameters\n\n |-----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n | ` `*identifiedLanguages*` ` | The list of identified languages for the text, or `nil` in case of an error. If no languages were identified, the result will consist of a single element with the language `IdentifiedLanguage.undetermined` and confidence 1. |\n | ` `*error*` ` | The error or `nil`. |"]]