码迷,mamicode.com
首页 > 移动开发 > 详细

【iOS入门】数组遍历

时间:2020-02-07 17:10:44      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:sele   with   lang   operator   eth   self   入门   label   数据   

数组的makeObjectsPerformSelector:SEL方法来减少自己写循环代码.
 [self.answerView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
 

 1.  makeObjectsPerformSelector:@select(aMethod)

     简介:让数组中的每个元素 都调用 aMethod 

 2.  makeObjectsPerformSelector:@select(aMethod) withObject:oneObject

     简介:让数组中的每个元素 都调用 aMethod  并把 withObject 后边的 oneObject 对象做为参数传给方法aMethod

[array makeObjectsPerformSelector:@selector(setRecurringDelegate:) withObject:self]; /*将检测到的该自动插入的交易插入数据库*/
 
[array makeObjectsPerformSelector:@selector(insertRecursion)];
/*将检测到的该自动插入的交易插入数据库*/

【iOS入门】数组遍历

标签:sele   with   lang   operator   eth   self   入门   label   数据   

原文地址:https://www.cnblogs.com/mamamia/p/12273428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!