AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones específicas para móviles / Funciones Apple Watch
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
Sends an information from an iOS phone to an Apple Watch (or conversely).
Example
MyBuffer is Buffer = "Text buffer"
IF NOT awSendInfo(MyBuffer) THEN
Error(ErrorInfo())
END
Syntax
<Result> = awSendInfo(<Data>)
<Result>: Boolean
  • True if the sending was successful
  • False otherwise. ErrorInfo returns more details about the error.
<Data>: Buffer
Data to send.
Remarks
  • The receiver will receive the data sent via the procedure passed to awProcedureGetInfo.
  • If the data has not changed since the previous call, the receiver procedure will not be called.
  • The data or information send is considered as being volatile: each successive call replaces the data sent by the previous call.
  • The data is transferred in background to reduce the use of the battery. Therefore, the data can be transmitted quite a long time after the effective call.
  • The data sent must be preferably small (to avoid overloading the communication between the watch and the phone).
Versión mínima requerida
  • Versión 21
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 07/03/2023

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