- Objective-C Memory Management Essentials
- Gibson Tang Maxim Vasilkov
- 215字
- 2021-07-23 20:09:12
Summary
In this chapter, you learned what memory management in Objective-C is and how it works. You also learned the best practices while working with Manual Retain Release, and got an introduction to Automatic Reference Counting, Objective-C Objects, and root classes. ARC basically can be considered as a compile time guard against memory leaks as the compiler will automatically write the release statements for you at compile time. So, there is no need to write verbose release statements in your code to keep it clean and terse.
One tip to note for coding with memory management is that whenever you do alloc
and init
, then write your release code after that and put it in its appropriate place in your class, you can forget to call the release method after writing some or fixing some bugs. So writing your object release statements after you do alloc
and init
will help you to keep memory leaks to a minimum so that you won't have a situation where you get a memory leak as you have forgotten to write your object release statement.
In the next chapter, you will learn more about ARC, how it works, its advantages, how to set up your projects to use ARC and memory models in Objective-C and UI Kit with ARC.
- HTML5+CSS3王者歸來
- Getting Started with React
- Learning Cython Programming
- Mastering RabbitMQ
- JavaScript+DHTML語法與范例詳解詞典
- Designing Hyper-V Solutions
- Python高級編程
- x86匯編語言:從實模式到保護模式(第2版)
- Windows Server 2012 Unified Remote Access Planning and Deployment
- HTML5+CSS3網站設計基礎教程
- QGIS By Example
- Building Machine Learning Systems with Python(Second Edition)
- Python編程:從入門到實踐(第3版)
- 從零學Java設計模式
- Kotlin進階實戰