Not sure if this is really possible but I don't know if I have the right things here. It seems possible from reading around that despite what is set in the info.plist that one can programmatically hide the status bar (time, battery etc).
I thought someone had already tried this but I couldn't find anything in the forum. Sorry for wasting time if it was already discussed I just couldn't find it.
I've tried this, doesn't work:
from objc_util import *
import ui
#try to get a true full screen without any iOS status bar.
v = ui.View()
ObjCInstance(v).prefersStatusBarHidden_ = True #likely wrong but i'm not sure...
v.present(hide_title_bar=True)
shared_application = ObjCClass('UIApplication').sharedApplication()
shared_application.setStatusBarHidden_ = True