Nick Donaldson
Nick Donaldson
I'm working on making Novocaine ARC-compatible and cleaning up the property/ivar structure to follow more modern best-practice conventions (no ivars without a good reason, auto-synthesized properties, correct atomicity and retention,...
I find it a lot easier than the C API. It will only be a big change in terms of supporting specific ios versions, since a lot of the equivalent...
Sounds good to me. I have an ARC compatible, modernized branch on my fork. No change to the API usage though. I will open a pull request sometime soon. On...
Given the fact that the C API is going to be deprecated, I would say yes. I dont think they would do that without providing all the necessary config options....
@alexbw I have, it's a pretty straightforward migration to the new API. But I don't have a ton of time right now. @mikeyzcai If you are familiar with AVAudioSession at...
The open pull request contains an implementation of how to explicitly set the output route. Worth checking out.
Cool, that would definitely be useful. Not sure you need to key it off of your own strings though, could just use the standard route enum type as the argument.
Or map the enum to something more readable.
@ZevEisenberg I like it a lot, though I agree with your point about it being obscure. Also it's a gcc extension, not part of the C standard, so I'm not...
@ZevEisenberg My comment to @KingOfBrian was not to do it _unless_ it's absolutely required, e.g. in a struct, so that's a valid point. Otherwise, I respect your disagreement, but I...