IOS Memory Management Summary

Source: Internet
Author: User

1. [Super init] must be called in the init function, and [Super dealloc] must be called in the dealloc function.

2. Call the object generated by the function starting with "alloc", "new", "copy", "mutablecopy", which must be release

3. The object calls retain and must be release.

4. The object can call autorelease to delay release.

5. Each thread has at least one autoreleasepool.

6. For collections such as nsarray and nsdictionary, calling release will automatically remove (remove and release) all contained objects.

7. If you do not want to pollute the current autoreleasepool, you can do this.

NSAID utoreleasepool * Pool = [[NSAID utoreleasepool alloc] init];

// YourCode

[Pool release];

8. Avoid loop references, such as a-> B-> C-> A. If you cannot avoid adding other release functions (dispose) to the object to break the loop.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.