ccc
Jan 12, 2016 - 06:46
If your script does view.present('sheet') you might find that your view is too small in Pythonista v2.
One possible fix would be to size your view prior to presenting it.
view.width = view.height = min(ui.get_screen_size())
view.present('sheet')