- 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.
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- JSP網絡編程(學習筆記)
- Learning RabbitMQ
- Clojure for Domain:specific Languages
- MongoDB權威指南(第3版)
- 零基礎學單片機C語言程序設計
- Python時間序列預測
- Java EE核心技術與應用
- C語言程序設計
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- JavaScript應用開發實踐指南
- Python Essentials
- Swift High Performance
- 網頁設計與制作
- Access 2016數據庫應用與開發:實戰從入門到精通(視頻教學版)