ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Mobile specific functions / iCloud functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Removes a key from an Apple iCloud-based container of "key-value" pairs.
Example
// Tableau de réels
tabRéels is array of 5 reals
tabRéelsLu is array of 5 reals
tabRéels[1] = 45.698
tabRéels[2] = 149.01
tabRéels[3] = 5.589
tabRéels[4] = 154892.025
tabRéels[5] = 7820
// Ecriture
iCloudKeyValueWrite("Tableau de réels", tabRéels)
// Lecture
tabRéelsLu = iCloudKeyValueRead("Tableau de réels")
// Suppression
iCloudKeyValueRemove("Tableau de réels")
Syntax
<Result> = iCloudKeyValueRemove(<Key>)
<Result>: Boolean
  • True if deleted successfully,
  • 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.
Minimum version required
  • Version 28
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help