Paul Williamson
Paul Williamson
In case anyone else wants to ignore these warnings, run the following from your project root. ``` $ sudo strip -S -X -x Pods/OrigamiEngine/Audio-Frameworks/bin/flac/FLAC.framework/Versions/A/FLAC ```
This seems to work really well. I presume the only noticable downside to this is OrigamiEngine uses more memory?
I can't help I'm afraid, as the code in question is C++ and I have limited experience of this. I will be taking a step back from upnpx as my...
I actually need to implement these changes myself for an app I'm working on. I'll check with my CTO what our open source policy is. Hopefully I can push my...
Steps to find an reproduce the issue. 1. Load up the demo project 2. Connect to a UPnP server with a decent sized library (a few thousand tracks). 3. Tap...
I may have been mistaken - it could be the **parsing** that is blocking the thread. If you try [this gist](https://gist.github.com/squarefrog/08153aef35cc3c9d14d3) which shifts the parsing into a default queue, then...
Ok - well another issue with synchronous networking is that if you switch the renderer off while the framework is awaiting a response, then the app locks up until it...
Precisely. It's obviously why you shouldn't do this while scrolling a table view while a call is made. You can create a pseudo-asynchronous call by using operation queues or GCD.
Apparently this is a [contentious issue](https://github.com/jgm/CommonMark/issues/393) for CommonMark.
There are a couple of ways you could test this. Something like https://github.com/kif-framework/KIF would allow you to generate screen shots and compare them. This would be tricky as you could...