我有一个列表
let cell : CustomCell = CustomCell()
我想将列表b的成员插入到类似的
中let cell = tableView.dequeueReusableCellWithIdentifier("customCell", forIndexPath: indexPath) as! CustomCell
有关如何执行此操作的任何建议吗?
答案 0 :(得分:0)
如果您要在b
的每个列表末尾的a
中插入项目,enumerate()
和append()
是您的选择。
for idx,item in enumerate(b):
a[idx].append(item)
print a
>>> [['mf1234', 'james', '22', 'man'], ['mcs345', 'Anee', '22', 'women']]