For years I've used Preprocessor Macros in Build Settings as a convenient place to store configuration specific details - this allowed different schemes to have different settings without code changes…
#xcode
4 posts with this tag
When I first created ConvenientFileManager [https://github.com/wibosco/ConvenientFileManager] I didn't add a unit testing target - what can I say, I was young(er) and foolish. Recently I decided to rectify this grievous error and added a unit testing target. After writing the tests I pushed them…
I run into the following error from time to time" Expected specifier-qualifier-list before `XYZ` and everytime it takes me a while to work out what caused it. Making sure I don't forget 🙃 It's caused by introducing an import circular dependance where class abc imports class xyz whic…
It's not unusal to see the following error when attempting to use a new framework or class: _OBJC_CLASS_$_'XYZ' There are mainly two reasons why this error occurs. 1. Forgotten to include a framework that you are attempting to use. 2. A class's .m file isn't included in the…