同时访问0x6040000155d8,但修改需要独占访问

时间:2018-08-03 13:20:41

标签: ios arrays swift

我经历了this这样的问题,并且知道这是由于同时进行读取和写入而发生的。但就我而言,我无法弄清楚我同时要在哪里读写阵列。

我正在做的是在插入数组之前从数组中删除子范围。例如:

var createGameOptions = [GOCreateGameDetailsModel]()
for attribute in model.gameAttributes! {
     let model = GOCreateGameDetailsModel.init(title: attribute.attribute_name!, image: nil, value: "", imageUrl: attribute.attribute_icon)
     createGameOptions.append(model)
}
if (createGameModel?.createGameOptions?.count)! > 3 {
    createGameModel?.createGameOptions?.removeSubrange(2...((createGameModel?.createGameOptions?.count)! - 2))
}
createGameModel?.createGameOptions?.insert(contentsOf: createGameOptions, at: 2) 

我们将不胜感激任何帮助。

2 个答案:

答案 0 :(得分:4)

您应该尝试更新此行

createGameModel?.createGameOptions?.removeSubrange(2...((createGameModel?.createGameOptions?.count)! - 2))

收件人

let count = (createGameModel?.createGameOptions?.count)!
createGameModel?.createGameOptions?.removeSubrange(2...(count - 2))

尝试并分享结果

答案 1 :(得分:3)

在Swift 4.2中,与独占访问相关的警告变为错误,这意味着带有这些警告的项目将永远不会在Swift 4.2上编译

警告是当修改变量的变异方法传递给从同一变量读取的非转义闭包时发生的。例如:

var result = Data(count:prf.cc.digestLength)
let count = result.count
let status = result.withUnsafeMutableBytes {
            // can not use directly result.count inside this non escaping closure. must computed before using count
}

有关此的更多详细信息,请查看本文。 exclusive access erros