Array NSArrayt, the pitfalls used by NSMutableArray,

Source: Internet
Author: User

Array NSArrayt, the pitfalls used by NSMutableArray,

In OC development, model is usually used to process data. It is often used to encounter a defined field. For various reasons, the background suddenly changes the field or the null value, resulting in the corresponding value of the model being nil, at this time, if we add this value to the array, we will find that the number of parameters in the array is small, causing crash. In the OC array, if you do not need to pre-apply for adding or deleting an element to the space array, a node is added or deleted. nil indicates the last node, which is not included in the array element. Therefore, if the field is nil, the array element is missing.

NSArray * array = [NSArray arrayWithObjects: @ "1", @ "2", nil, @ "3", @ "4", nil];

NSLog (@ "array ===%@", array );

Output array ==== (

1,

2

)

If you change nil to @ "", no error will be reported.

NSArray * array = [NSArray arrayWithObjects: @ "1", @ "2", @ "", @ "3", @ "4", nil];

NSLog (@ "array ===%@", array );

OutputArray = (

1,

2,

"",

3,

4

)

 

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.