ARC-circular reference-solution, arc-reference solution

Source: Internet
Author: User

ARC-circular reference-solution, arc-reference solution

1. The most common type of code for loop reference.

 

-(Void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. optional * firstArray = [[NSMutableArray alloc] init]; NSMutableArray * secondArray = [[financialloc] init]; [firstArray addObject: secondArray]; [secondArray addObject: firstArray];}

 

Ii. Solution to circular reference.

1. the programmer manually disconnects a ring and stops loop reference.

2. Weak references. Because weak references hold objects, the reference count is not increased. This prevents the generation of circular references.

 

3. Common examples of weak references to avoid circular references.

There are two viewcontrollers, which need to transmit data to each other. In this case, the delegate member variable of ViewController is usually a weak reference. The objective is to avoid circular reference between two viewcontrollers.

 

References: iOS development time series-Tang Qiao

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.