Regrant Failed

Classic Apple Rainbow Logo

Recently I had to restore my iPhone. I made sure my iCloud backup was up to date, reset the phone and allowed it to restore from the backup.

Swift 3 Access Levels

Swift 3 now provides five access levels for code entities. The five levels are shown below from least to most restrictive. OPEN Open access allows entities to be accessed from any source code within your module and also external modules. PUBLIC The same as open but restricts subclassing to your module. INTERNAL This is the […]

SpriteKit Physics Memory Leak

During testing I discovered my game was leaking a small amount of memory each second. Using Instruments I discovered the problem seemed to be connected to PhysicsKit. In GameViewController I had enabled showPhysics to check the physics bodies of the nodes. This was causing the memory. It’s not a big problem as this would not […]