01
nil vs Nil vs NULL vs NSNull in Objective-C
Objective-CFundamentalsMemory
Objective-C has four ways to represent nothing. Understanding when to use each prevents subtle bugs and clarifies your code's intent.
READ_ARTICLE
// 3 articles available
Objective-C has four ways to represent nothing. Understanding when to use each prevents subtle bugs and clarifies your code's intent.
Retain cycles are the most common memory leak in Objective-C. Learn how they form, how to detect them, and patterns that prevent them.
Discover how the Objective-C runtime secretly stores small strings directly in pointer values, eliminating heap allocations entirely.