gpt4 book ai didi

ios - Swift:将 [[[CGFloat]]] 合并到 [[CGFloat]] 与额外数据的正确方法是什么

转载 作者:行者123 更新时间:2023-11-29 01:11:32 26 4
gpt4 key购买 nike

我有一个像 CGFloat 数组

[[[1,2],[2,3]],[[6,1],[5,6]],[[6,1],[11,6],[21,3]]]

不,我想合并子数组并在每个子数组中添加数组数据,如

[[1,2],[2,3],[9999,9999],[6,1],[5,6],[9999,9999],[6,1],[11,6],[21,3]]

现在我可以使用循环并在其中运行beforearray + array[i] + [9999,9999]来实现功能,但我想知道最好的办法

最佳答案

你可以这样做:

let foo = [[[1,2],[2,3]],[[6,1],[5,6]],[[6,1],[11,6],[21,3]]]

let bar = foo.joinWithSeparator([[9999,9999]]).map({$0})

print(bar)

// [[1, 2], [2, 3], [9999, 9999], [6, 1], [5, 6], [9999, 9999], [6, 1], [11, 6], [21, 3]]

joinWithSeparator returns a view, whose elements are the result of interposing a given separator between the elements of the sequence self.

关于ios - Swift:将 [[[CGFloat]]] 合并到 [[CGFloat]] 与额外数据的正确方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35694629/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com