omz:forum

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

    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 1
    • Followers 1
    • Topics 28
    • Posts 80
    • Best 6
    • Controversial 0
    • Groups 0

    scj643

    @scj643

    8
    Reputation
    1746
    Profile views
    80
    Posts
    1
    Followers
    1
    Following
    Joined Last Online

    scj643 Unfollow Follow

    Best posts made by scj643

    • IRC channel

      An IRC Channel would be nice to provide help and to talk.

      posted in Pythonista
      scj643
      scj643
    • RE: Apple Acquires Popular Automation App Workflow

      This shouldn't be an issue for us since we never have gotten on the front page of the App Store or an App Store Editor Choice

      posted in Pythonista
      scj643
      scj643
    • RE: Autoplay mp4 video in WebView

      My objc_tools library has view's for AV players which can do autoplay

      https://github.com/scj643/objc_tools/blob/master/objc_tools/ui/av.py

      You would want to use a PlayerLayerView

      posted in Pythonista
      scj643
      scj643
    • Help wanted for objc library

      I am looking for people that are willing to contribute to my objc module that I've been making.

      https://github.com/scj643/objc_tools

      My plan is to have it be the definitive module for bridging with objc with simple python functions.

      posted in Pythonista
      scj643
      scj643
    • RE: Keychain issues

      Also it could be used to store data that needs to survive an app reinstall potentially.

      posted in Pythonista
      scj643
      scj643
    • Dialog view with letter scrubbing

      A dialog view with a side letter slider to quickly find items starting with a letter would be nice. Like how it works in the stock music app.

      posted in Pythonista
      scj643
      scj643

    Latest posts made by scj643

    • RE: [SOLVED] First attempt to integrate ARkit and first questions...

      If anyone needs a bridge for SceneKit I have https://github.com/scj643/objc_tools/blob/master/objc_tools/scenekit/sk_scene.py

      posted in Pythonista
      scj643
      scj643
    • TrueTone and disabling it programmatically

      I've been working a lot with private libs and this one has stumped me.
      THe way true tone overriding works is on the Info.plist as defined at https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW31

      I want to be able to make it so I can change this during the runtime (sometimes i notice flickers of true tone turning off which is probably an iOS issue)

      posted in Pythonista
      scj643
      scj643
    • RE: objc_util wishlist

      It doesn't actually say what type it wants
      example

      v = UIView.new()
      v.setAlpha_('t')
      
      posted in Pythonista
      scj643
      scj643
    • RE: Include more custom fonts

      Might be able to hack it in with objc_util Also one can install fonts system wide as well. Using a configuration payload.

      posted in Pythonista
      scj643
      scj643
    • RE: objc_util wishlist

      It doesn't tell you what type it expected

      posted in Pythonista
      scj643
      scj643
    • objc_util wishlist

      I have found myself using objc_util a whole lot. Heck my pride and joy of a library is made with it

      Some things I wish objc_util had are

      Better ways of responding to blocks.

      A block should have it's own accessible class that functions within the block can access. Also a block should be self contained and not having to push to a global variable

      class Block(object):
          def __init__(self):
              self.someValue = 1
          def callOnFinish(self, passed_value):
              self.someValue = passed_value
      

      Better type error handling

      Currently objc_utils throws very cryptic errors when a type issue happens with an objc function. The type expected should be stated in the error

      Error objects

      If something has an option that is an NSError a built in part of objc_util should provide that. (I currently have an implementation but it's strange)

      Though in all I'm still really happy with objc_util

      posted in Pythonista
      scj643
      scj643
    • Header parser

      I have started a really really rough base for an objc header parser. You would give it headers and it would give you formated enums for the constants in it.

      posted in Pythonista
      scj643
      scj643
    • RE: Keyboard shortcuts (Physical)

      http://nshipster.com/uikeycommand/ Seems subclasses need to be able to become first responders

      posted in Pythonista
      scj643
      scj643
    • RE: We need a FAQ

      @Evan03Davis I wouldn't use wikidot I would have some sort of github wiki

      posted in Pythonista
      scj643
      scj643
    • RE: Keyboard shortcuts (Physical)

      I plan on adding this feature to my objc_tools lib like many other features.

      posted in Pythonista
      scj643
      scj643