Padraig
Padraig
This is possibly not XCGLogger's problem, but I wanted to share it, since I have a reliable example project, just in case anyone has a work around. Feel free to...
``` 2017-04-03 20:23:44 UTC LOG: invalid checkpoint record 2017-04-03 20:23:44 UTC FATAL: could not locate required checkpoint record 2017-04-03 20:23:44 UTC HINT: If you are not restoring from a backup,...
`OSAtomicAdd32` is deprecated since 2016 and `atomic_fetch_add_explicit` is recommended as the alternative. See more details here: https://forums.developer.apple.com/thread/62765 Note that with `atomic_fetch_add_explicit`, the return value is the value before addition, unlike...
If I use `use_frameworks!` with Cocoapods and include the RaptureXML pod, it fails to compile. See https://github.com/CocoaPods/CocoaPods/issues/3654#issuecomment-109536861 This can be recreated by setting up a new single view project and...
This image http://thisamericanlife.org/sites/all/themes/thislife/images/logo-square-1400.jpg has a white background. The original Mac ColorArt class detects it correctly, however, the background color comes out grey from the iOS version.
Change tags in Languages.xml to so that more than the first line of the file is scanned.
When I create a new file and define a new class, referencing the new class in another file will produce a `cannot find in scope` error. It persists through builds...
When using build tool plugins in Swift packages, it's possible to generate code that is then available to the project. Some examples of projects that do this are: * [SwiftGodot](https://github.com/migueldeicaza/SwiftGodot)...
Xcode can show the generated code that a macro creates by right clicking and choosing "Expand Macro". I'm not sure if this is possible through the LSP or not but...