Memory Leaks in Swift This post from Leandro Pérez looks at memory leaks in Swift. Leandro first explains what memory leaks are, and how they occur, before describing what we can do to avoid them. Posted on May 14, 2018 #memory #leak
Using unit tests to identify & avoid memory leaks in Swift John Sundell demonstrates how we can use simple unit tests to identify and avoid memory leaks. John looks at three scenarios - using delegates, observers, and closures - and describes the problem that can arise with each. Posted on November 28, 2017 #memory #testing #leak