标签: ios arrays swift
我有一个数组。它包含许多对象。如何拆分3个对象的组?
例如
let array = [1,2,3,4,5,6,7,8]
像这样:
var targetAarray = [[1,2,3],[4,5,6],[7,8]]