omz:forum

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

    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 1
    • Controversial 0
    • Groups 0

    twloveduck

    @twloveduck

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

    twloveduck Unfollow Follow

    Best posts made by twloveduck

    • RE: Complete doc/refernce for ui.ImageView

      Or to make it easy on yourself:

      import ui
      viewSet = set(dir(ui.View))
      print(set(dir(ui.ImageView)).difference(viewSet))
      

      It will give you the methods that are unique to the ImageView class and not inherited from View.
      It is just {'image', 'load_from_url'}

      Everything else is from the View and should be documented there.

      posted in Pythonista
      twloveduck
      twloveduck

    Latest posts made by twloveduck

    • RE: Complete doc/refernce for ui.ImageView

      Or to make it easy on yourself:

      import ui
      viewSet = set(dir(ui.View))
      print(set(dir(ui.ImageView)).difference(viewSet))
      

      It will give you the methods that are unique to the ImageView class and not inherited from View.
      It is just {'image', 'load_from_url'}

      Everything else is from the View and should be documented there.

      posted in Pythonista
      twloveduck
      twloveduck