AI-generated Key Takeaways
-
MLKCustomRemoteModelis a model that is stored on a remote server and downloaded to the device when needed. -
It can be initialized using
initWithRemoteModelSource:providing aMLKRemoteModelSourceobject. -
The default
initmethod is unavailable for this class.
MLKCustomRemoteModel
@interface MLKCustomRemoteModel : MLKRemoteModelA custom model that is stored remotely on the server and downloaded to the device.
-
Creates a new instance with the given remote model source.
Declaration
Objective-C
- (nonnull instancetype)initWithRemoteModelSource: (nonnull MLKRemoteModelSource *)remoteModelSource;Parameters
remoteModelSourceThe source of the custom remote model.
Return Value
A new
CustomRemoteModelinstance. -
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;