gpt4 book ai didi

ios - 快速推送/append 数组

转载 作者:搜寻专家 更新时间:2023-11-01 05:37:18 25 4
gpt4 key购买 nike

如何将数据推送/append 到此数组 var tempArray = [[],[],[]] ?

我试图 append 这些数据

  tempCart[0] = (uuid as? NSArray)!  //string
tempCart[1] = (fileName as? NSArray)! //string
tempCart[2] = (imageData as? NSArray)! //NSData

但它显示“从字符串转换为无关类型‘NSArray’总是失败”

更新现在我试了这条线

tempCart += [[uuid],[fileName],[imageData]]

当我将所有字符串放入数组时一切顺利,但是当我放入“imageData”时出现错误“表达式类型不明确,没有更多上下文”

最佳答案

这里有一些代码变体供您使用:

var tempArray = [(String, String, NSData)]()
let oneElem = (uuid, fileName, imageData)
tempArray.append(oneElem)

...

tempArray[0].0 // you can access to uuid of 1st element
tempArray[8].1 // you can access to fileName of 7th element

关于ios - 快速推送/append 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35447220/

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