ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Mobile specific functions / iCloud functions
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.
Minimum version required
  • Version 28
Comments
Click [Add] to post a comment

Last update: 01/12/2023

Send a report | Local help