应该调用函数,直到我的数组变空

时间:2018-01-16 12:43:49

标签: ios arrays swift loops for-loop

我有一个数据数组,我需要调用一个API函数并使用我的数组值。每次API命中时,应该删除值,并且应该调用我的函数,直到数组变空。

1 个答案:

答案 0 :(得分:0)

试试这个例子。 首次调用此方法进程并像

一样传递数组
const xyz = {
'fName': {type: 'string'},
'mName': {type: 'string'},
'lName': {type: 'string'}
};

它将调用自身,直到数组包含元素。

const arr = [
{'fName': {type: 'string'}},
{'mName': {type: 'string'}},
{'lName': {type: 'string'}}
]