Swift:使用map闭包转换自定义对象

时间:2015-09-10 23:08:59

标签: swift closures

我有一个Custom对象数组,我想将它们转换为其他自定义对象数组....

我可以使用地图关闭吗?

我试过这样:

items.map( { (cutom: Custom1) -> Custom2 in
                Custom2(title: custom.name, locationName: custom.placeName))
            })

但没有结果......编译器给我以下错误: _ ??不能转换为'数组'

感谢您的回复!

0 个答案:

没有答案