@cvp said:
@DavinE please, try as method of an ui.View
def get_screen_size(self): app = UIApplication.sharedApplication().keyWindow() for window in UIApplication.sharedApplication().windows(): ws = window.bounds().size.width hs = window.bounds().size.height break return ws,hs
@cvp my friend, this works wonderfully
Thanks a lot :D