AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones específicas para móviles / Funciones iCloud
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Removes a key from an Apple iCloud-based container of "key-value" pairs.
Example
// Array of reals
arrReals is array of 5 real
arrRealsRead is array of 5 real
arrReals[1] = 45.698
arrReals[2] = 149.01
arrReals[3] = 5.589
arrReals[4] = 154892.025
arrReals[5] = 7820
 
// Write
iCloudKeyValueWrite("Array of reals", arrReals)
 
// Reading
arrRealsRead = iCloudKeyValueRead("Array of reals")
 
// Deletion
iCloudKeyValueRemove("Array of reals")
Syntax
<Result> = iCloudKeyValueRemove(<Key>)
<Result>: Boolean
  • True if the deletion was performed,
  • False otherwise.
<Key>: Character string
Name of the key to remove.
Remarks
  • The key name must be less than 64 bytes in UTF-8 encoding.
  • An application can use up to 1024 keys.
  • The total space for key storage cannot exceed 1 MB.
  • Keys and values are shared for the same application on devices using the same iCloud account.
  • Synchronization between devices can take several minutes.
Versión mínima requerida
  • Versión 28
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 12/01/2023

Señalar un error o enviar una sugerencia | Ayuda local