ankita kotadia - Senior iOS EngineerWeak self vs. UnownedIn Swift, Weak selfand Unownedare two ways to handle references to self within closures to avoid strong reference cycles, which can lead to…May 19
Ranga CDifference between escaping and non escaping closuresIn this post we are going to learn, difference between escaping closures and non-escaping closures. Closures are self contained block of…Apr 10, 2023
nowwowMemory Leak in the Real iOS Project / Understanding Swift’s Closure DeeperA bug occurred in my project from the memory leak, but I couldn’t understand the Pull Request from my colleague.Apr 22Apr 22
InThe StartupbySOHAM PAULYou don’t need to use [weak self] regularlyUnowned, Weak, and the Strong-Weak RelationMay 2, 20201May 2, 20201
yikaramanUnderstanding the Importance of [weak self] in Swift: Safeguarding against Strong Reference CyclesIn Swift, managing memory and preventing memory leaks are essential for building reliable and efficient applications. One common scenario…Jul 2, 2023Jul 2, 2023
ankita kotadia - Senior iOS EngineerWeak self vs. UnownedIn Swift, Weak selfand Unownedare two ways to handle references to self within closures to avoid strong reference cycles, which can lead to…May 19
Ranga CDifference between escaping and non escaping closuresIn this post we are going to learn, difference between escaping closures and non-escaping closures. Closures are self contained block of…Apr 10, 2023
nowwowMemory Leak in the Real iOS Project / Understanding Swift’s Closure DeeperA bug occurred in my project from the memory leak, but I couldn’t understand the Pull Request from my colleague.Apr 22
InThe StartupbySOHAM PAULYou don’t need to use [weak self] regularlyUnowned, Weak, and the Strong-Weak RelationMay 2, 20201
yikaramanUnderstanding the Importance of [weak self] in Swift: Safeguarding against Strong Reference CyclesIn Swift, managing memory and preventing memory leaks are essential for building reliable and efficient applications. One common scenario…Jul 2, 2023
ChrisiOS and Swift | How to use Weak SelfStep 1. Buiding Navigation view and Navigating to the second PageJul 23, 2022
ChrisiOS and Swift | Why use Weak SelfStrong Reference and Weak Reference are the way how memory is managed for objects. We can mark weak or not mark weak and the system manages…Jul 23, 2022
Jyoti LalARC(Automatic Reference Counting)ARC (Automatic Reference Counting) is an automatic memory management method that is used by Apple. The reference count is used to…May 22, 2022