omz:forum

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

    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 38
    • Posts 100
    • Best 2
    • Controversial 0
    • Groups 0

    robertiii

    @robertiii

    2
    Reputation
    1590
    Profile views
    100
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    robertiii Unfollow Follow

    Best posts made by robertiii

    • RE: Tableview not reloading

      Mikael you’re a genius!

      posted in Pythonista
      robertiii
      robertiii
    • Splitting up files

      I have a fairly large project. I would like to split the files up. I would like to split it as follows. A file for custom view classes. An individual file for each tableview. A file for the main document (obviously). If it is possible a file for the button actions.

      posted in Pythonista
      robertiii
      robertiii

    Latest posts made by robertiii

    • RE: Resize a View that is already presented

      I think I’m starting to follow. Sorry I do enough programming to understand little. HAHA

      posted in Pythonista
      robertiii
      robertiii
    • RE: Resize a View that is already presented

      So I think I should somehow be able to use Transform..... but.... It only scales the view inside the Popup not the bounds of the the Popup itself.

      posted in Pythonista
      robertiii
      robertiii
    • RE: Resize a View that is already presented
      def menuButton(sender):
      	pv = ui.load_view('menuPopOver')
      	pv.name = 'Menu'
      	pv.frame = (0,0,400,149)
      #	x = sender.x + sender.width/2
      #	y = sender.superview.titlebar_height + sender.y + sender.height/2
      	pv.present('popover',popover_location = (44.5,50))  
      
      posted in Pythonista
      robertiii
      robertiii
    • RE: Resize a View that is already presented

      So I have it presented with an arrow pointing to a menu bar buttonitem.

      posted in Pythonista
      robertiii
      robertiii
    • Resize a View that is already presented

      I am presenting a view as a popover. I want to resize the popover and add a tableview. The problem is not adding a tableview but how to go about resizing a view that is already being presented? Any work around or ideas. I would include code but I really haven’t got any! Hee Hee

      posted in Pythonista
      robertiii
      robertiii
    • Popover for nav bar button

      I found this code somewhere on the internet heehee.

      def menuButton(sender):
      	pv = ui.View()
      	pv.name = 'popover'
      	pv.frame = (0,0,200,200)
      	x = sender.x + sender.width/2
      	y = sender.superview.titlebar_height + sender.y + sender.height/2
      	pv.present('popover',popover_location = (x,y))  
      

      However this doesn’t work with navbar buttons as they don’t have the location information. How can I get the location info?

      posted in Pythonista
      robertiii
      robertiii
    • RE: Move tableview cell to top of cell

      Or make detail cell multiple lines of text?

      posted in Pythonista
      robertiii
      robertiii
    • Move tableview cell to top of cell

      How do I move the text label to x=0 y=0 of the cell?

      posted in Pythonista
      robertiii
      robertiii
    • Multiple line label

      How can I get a multi line label?

      posted in Pythonista
      robertiii
      robertiii
    • RE: Tableview not reloading

      Mikael you’re a genius!

      posted in Pythonista
      robertiii
      robertiii