native.showPopup("sms", options0) the Top Status bar on an iPhone remains, is this a bug?

When using native.showPopup(“sms”, options0) the Top Status bar on an iPhone remains. When using

native.showPopup(“mail”, options0) it is ok and disappears.

I would believe this is a bug because the Cancel Button on the SMS Message window is partially obscured. [import]uid: 22152 topic_id: 21880 reply_id: 321880[/import]

Would you mind putting together a quick sample that demonstrates the bug and sending it in via the bug submission form?

http://developer.anscamobile.com/content/bug-submission

Thanks! [import]uid: 52430 topic_id: 21880 reply_id: 86962[/import]

I made a small project that shows the problem.

The problem as stated in the Bug Submission:

"If you have an app where the status bar is hidden with the following line:

display.setStatusBar( display.HiddenStatusBar ) and then execute the following line:

native.showPopup(“sms”, options) the status bar appears and does go away even after sending the
message or canceling the message.

The above scenario does not happen with the native.showPopup(“mail”, options)"
I had submitted a bug submission a week ago and never heard back. I resubmitted a report with the sample code below:

display.setStatusBar(display.HiddenStatusBar);  
 --\*\*BACKGROUND\*\*  
--local bkg = display.newImageRect("blackbackground.png", 768, 800) --1024)  
-- for non ads local bkg = display.newImageRect("blackbackground.png", 768,1024)  
  
--bkg:setReferencePoint(display.TopLeftReferencePoint)  
--bkg.x = (display.contentWidth/2) - (bkg.width/2)  
--bkg.y = (display.contentHeight/2) - (bkg.height/2)  
   
------------------------------------------------  
local buttonmessage = display.newImage( "hello.png" )  
buttonmessage.x = 100  
buttonmessage.y = 400  
  
function buttonmessage:tap(event)  
 display.setStatusBar(display.DefaultStatusBar)  
  
local options2 =  
{  
 to ="5551212222",  
}  
native.showPopup("sms", options2)  
  
end  

How long does a bug Submission take to hear about?

Steps to reproduce the problem:

  1. Hide the Status Bar with :display.setStatusBar( display.HiddenStatusBar )

  2. Tap a button with the following line native.showPopup(“sms”, options)

  3. Statusbar reappears and stays
    [import]uid: 22152 topic_id: 21880 reply_id: 88886[/import]

Thank you. We just committed a fix for this. Please look for the next daily build. [import]uid: 7563 topic_id: 21880 reply_id: 89189[/import]