omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. n8henrie

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    n8henrie

    @n8henrie

    0
    Reputation
    510
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    n8henrie Unfollow Follow

    Latest posts made by n8henrie

    • RE: UI Force the keyboard to go away

      My somewhat clunky solution hides the keyboard on any attempt to scroll:

      class MyScrollViewDelegate(object):
          def scrollview_did_scroll(self, scrollview):
              for sv in scrollview.subviews:
                  if hasattr(sv, 'end_editing'):
                      sv.end_editing()
      
      posted in Pythonista
      n8henrie
      n8henrie