Considerations for Array Usage

Source: Internet
Author: User

First, Nsarray and Nsmutablearray method difference 1, through the subscript obtained elements, only applicable to the Nsmutablearray error scene:
@property (nonatomic, Strong) Nsarray *departmentidsarray;[ Self.departmentidsarray Enumerateobjectsusingblock:^ (nsstring *departmentidstr, Nsuinteger idx, BOOL * _ Nonnull stop) {        if ([departmentidstr isequaltostring:@ "Uzg9"]) {         @"" ;         *stop = YES;    }}];

Error correcting:

@property (nonatomic, strong) Nsmutablearray *departmentidsarray;

When you define an array, you can declare the known types of the objects in the array, such as

-(nsarray<uitableviewrowaction *> *) TableView: (UITableView *) TableView editactionsindexpath{}

Assign an array (type strong) to another array (type strong) with an equal sign, resulting in a strong reference problem such as
Displaydocumentvc.folderallpatharr = disvc.folderallpatharr;[ Displaydocumentvc.folderallpatharr AddObject:companyFolderCell.DocumentModel.documentName];

Obviously is to add an object on Displaydocumentvc.folderallpatharr, but because of the role of strong reference, Disvc.folderallpatharr also added an object. And because Displaydocumentvc.folderallpatharr strong reference Disvc.folderallpatharr, so Disvc.folderallpatharr cannot release.

Considerations for Array Usage

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.