你知道如何在Realm中添加许多项目到List of Strings吗? 我试过像:
data.list.append = (["item1", "item2", "item3", "..."]) etc
但它不起作用
答案 0 :(得分:1)
为什么不尝试array.append(contentsOf: ["item1", "item2", "..."])
答案 1 :(得分:0)
虽然它可能会降低编译过程的速度,但您也可以使用+=
重载运算符来连接两个数组。
例如:
let a = [1,2,3]
var b = [4,5,6]
b+=a // b = [4,5,6,1,2,3]