Is there actually an iOS message box?

This help file says you can produce an ios message box by dragging the control in. “HelloMessage is an iOSMessageBox that was dragged onto the View from the Library:”

However, it seems there is no such item in the iOS library. I must be missing something.

http://developer.xojo.com/iosmessagebox

Ok - never mind - its not a draggable item in the library, but this works :

dim hellomessage as new iOSMessageBox
HelloMessage.Title = “Hello”
HelloMessage.Message = “Hello, World!”
HelloMessage.Show ’ N

It is. But in Library, most of the iOS controls come without their “iOS” prefix. So look for MessageBox. Its super will become iOSMessageBox once you drag it on a view.

More info on iOS Message Box here:

http://developer.xojo.com/userguide/ios-dialog-boxes$message-box