iOSMessageBox.Show

From Xojo Documentation

Method

iOSMessageBox.Show()

Supported on Mobile(iOS).

Displays the message box. This is not modal, so your code continues to run. When the user selects a button, the ButtonAction event handler is called.

Sample Code

Displays a message box. HelloMessage is an iOSMessageBox that was dragged onto the View from the Library:

HelloMessage.Title = "Hello"
HelloMessage.Message = "Hello, World!"
HelloMessage.Show // Not modal, so code does not pause here