Chris Hulbert
Chris Hulbert
Thanks for responding :) Terribly sorry but I can't, it's a work one, which is a SAML-ed git repo with 'sso enabled'. Having said all that, as far as command-line...
Had the same exact problem and symptoms. Downgrading to 14.3 worked in my case: https://github.com/pqrs-org/Karabiner-Elements/releases/download/v14.3.0/Karabiner-Elements-14.3.0.dmg
Hi, Someone else has a better fork, there's a link to it on the repo. Cheers On Sun, Sep 15, 2013 at 4:11 PM, nicolastaffin [email protected]: > Hi, > great...
I'm getting the same issue. It's preventing notification removals. Here's my correspondence with the author on the subject: Hi, Thanks for PHAirViewController, it's very pretty. However, it causes apps to...
Unfortunately GH won't allow me to attach the sample project. Attached here: http://s000.tinyupload.com/index.php?file_id=07458533194583357533
Oh dear, i've found the problem. Simple mistake. He's overridden 'dealloc' in a UIViewController category.
OK Here's how you fix it. Search for: ``` @implementation UIViewController(PHAirViewController) ``` Remove this: ``` - (void)dealloc { self.phSwipeHander = nil; } ``` Replace dealloc with this: ``` /// This...
You should open a new issue. Alternatively there are newer pods for achieving this menu these days, i'd consider looking for others. On Wed, Jul 15, 2015 at 10:42 PM,...
You're right, the 500 is logged, but not the exception/error details (unless i'm mistaken) so i think this could be helpful.
IIRC, it is used so that the runloop keeps a reference to 'self' for a couple seconds, otherwise self gets deallocated and you'd get no callbacks. On Thu, Mar 9,...