Str() equivalent in iOS

What is the Str(myInteger) equivalent in iOS?

I have tried Cstring, ToText and many others, and searched the LR and forum for what should be an easy answer, but cannot find it.

I am trying to do something like this:

Dim myText As Text Dim myTotal As Integer = 1000 for tempInt As Integer = 1 to 100 myText = myText + (myTotal + tempInt).ToText next

Found it!

myText = myText + Integer(myTotal + tempInt).ToText