博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组使用的注意事项
阅读量:5174 次
发布时间:2019-06-13

本文共 995 字,大约阅读时间需要 3 分钟。

一、NSArray与NSMutableArray的方法区别
 
1、通过下标取得元素,只适用于NSMutableArray
错误现场:
@property (nonatomic, strong) NSArray *departmentIdsArray;[self.departmentIdsArray enumerateObjectsUsingBlock:^(NSString *departmentIdStr , NSUInteger idx, BOOL * _Nonnull stop) {        if ([departmentIdStr isEqualToString:@"Uzg9"]) {        self.departmentIdsArray[idx] = @"";        *stop = YES;    }}];

纠错:

@property (nonatomic, strong) NSMutableArray *departmentIdsArray;

 

二、定义数组时可以同时申明改数组中对象的已知类型,比如

- (NSArray
*)tableView:(UITableView *)tableView editActionsindexPath{}

 

三、将一个数组(strong型)用等号赋给另一个数组(strong型),造成的强引用问题
比如, 
displayDocumentVC.folderAllPathArr = disVC.folderAllPathArr;[displayDocumentVC.folderAllPathArr addObject:companyFolderCell.DocumentModel.documentName];

明明是在displayDocumentVC.folderAllPathArr上增加一个对象,却因为强引用的作用,disVC.folderAllPathArr也增加了一个对象。并且因为displayDocumentVC.folderAllPathArr强引用disVC.folderAllPathArr,所以disVC.folderAllPathArr无法释放。

 

转载于:https://www.cnblogs.com/cchHers/p/8712163.html

你可能感兴趣的文章
IEnumerable<T>和IQueryable<T>区别
查看>>
(转)MFC界面风格
查看>>
Centos7 tmux1.6 安装
查看>>
二叉树(三)
查看>>
linux加密文件系统 fsck 无法修复一例
查看>>
【linux配置】VMware安装Redhat6.5
查看>>
AI自主决策——有限状态机
查看>>
《http权威指南》阅读笔记(二)
查看>>
软件工程
查看>>
http协议
查看>>
js替换问题replace和replaceAll
查看>>
c++11 : range-based for loop
查看>>
中国农历2013,2014 (zz.IS2120@BG57IV3)
查看>>
用virtualenv建立独立虚拟环境 批量导入模块信息
查看>>
Sublime Text3 插件:convertToUTF8
查看>>
BZOJ4060 : [Cerc2012]Word equations
查看>>
hdu2089不要62(数位dp)
查看>>
JAVA输出最大值和最小值
查看>>
64位weblogic11g安装
查看>>
oracle、mysql、sql server等;流行数据库的链接驱动配置
查看>>