Page Summary
-
MLKTranslateLanguagedefines the languages supported by the Translator. -
MLKTranslatorDownloadModelIfNeededCallbackis a block called when translate model downloads finish, signaling success or error. -
MLKTranslatorCallbackis a block providing the translation result or error upon completion.
Type Definitions
The following type definitions are available globally.
-
This enum specifies the languages that are supported by
Translator.Declaration
Objective-C
typedef NSString *MLKTranslateLanguage -
A block that is invoked when the downloading of translate models is complete.
Declaration
Objective-C
typedef void (^MLKTranslatorDownloadModelIfNeededCallback)(NSError *_Nullable)Parameters
errorThe error or
nil. -
A block containing the translation result or
nilif there’s an error.Declaration
Objective-C
typedef void (^MLKTranslatorCallback)(NSString *_Nullable, NSError *_Nullable)Parameters
resultA translation result for the text or
nilif there’s an error.errorThe error or
nil.