Hey,
native.newTextBox doesn’t appear to be displaying in the correct location on my iOS devices (iPad 3 and 3GS).
In the attached jpeg the white box should be in the middle of the screen (sorry for the red marker, I had some inappropriate text that I added out of frustration ). And the size is wrong as well, should be the same as the yellow boxes.
[lua]
self.beforeGameTextBox = native.newTextBox( 0,0, self.yellowbox.Width - 10,self.yellowbox.Height - 10 )
self.beforeGameTextBox.x,self.beforeGameTextBox.y=display.contentCenterX,display.contentCenterY
self.beforeGameTextBox.font = native.newFont( “Helvetica-Light”, 18 )
self.beforeGameTextBox.isEditable = true
self.beforeGameTextBox.id = “beforeGameText”
self.beforeGameTextBox:addEventListener( “userInput”, self )
[/lua]
Thanks,
Craig