gpt4 book ai didi

ios - 从服务器获取的数组元素,随机不同的顺序(快速)

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

在 viewDidLoad 中我有这样的代码:

Alamofire.request(.GET, "http://my1test.ru/applejesus.php?task=getCategoryCount").responseString(encoding: NSUTF8StringEncoding) { (request, response, string, error) -> Void in
let count = string!.toInt()!
println(count)

for var i=1; i<=count; i++ {
// println(i)
lib.httpGetAsNSData("http://my1test.ru/applejesus.php?task=getCategory&categoryNumber=\(i)") {result in
let json = JSON(data: result)
let title = json["title"].stringValue
println("title: "+title)
if title.isEmpty == false {
NSURLSession.sharedSession().dataTaskWithURL(NSURL(string: "http://my1test.ru/aj/"+lib.urlencode(title)+".png")!) { (data, response, error) in
self.images.append(data)
self.catTitles.append(title)
//self.tableViewObject.reloadData()
}.resume()
}
}
}
}
}

首先我们请求类别计数,其次我们加载它们的标题并将它们添加到数组中。还有一个 NSData 数组,其中包含每个类别的图像。图片也从服务器加载。

现在请看println("title: "+title)

所以我的问题是解析标题的顺序可以随机更改。为什么会发生,我应该如何解决它,如果不是随机的,我做错了什么?

在下面的截图中你可以看到 1 个元素总是在不同的位置

如果需要,httpGetAsNSData 列表:

 class func httpGetAsNSData(url: String, completion: NSData -> Void) {
if url.isEmpty == false { var request = NSMutableURLRequest(URL: NSURL(string: url)!)

request.HTTPMethod = "GET"

request.addValue("text/html", forHTTPHeaderField: "Content-Type")
request.addValue("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36", forHTTPHeaderField: "User-Agent")
request.addValue("text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", forHTTPHeaderField: "Accept")
request.addValue("gzip, deflate, sdch", forHTTPHeaderField: "Accept-Encoding")
request.addValue("max-age=0", forHTTPHeaderField: "Cache-Control")

var session = NSURLSession.sharedSession()

let task = session.dataTaskWithRequest(request, completionHandler: { data, response, error in

if error != nil {

println(error.localizedDescription)

}

completion(data)

})

task.resume()
}
}

enter image description here

enter image description here

enter image description here

最佳答案

这是因为你为每个项目做了一个异步请求(dataTaskWithURL),所以字符串被添加到数组的顺序(self.catTitles.append(title)) 每次都不一样。

您可以通过对 Array 进行排序来获得固定顺序,例如按字母顺序排序:

var sortedNames = names.sorted { $0.localizedCaseInsensitiveCompare($1) == NSComparisonResult.OrderedAscending }

有关排序的更多信息,请参阅 this link



要保持数组位置,请先更新您的for-loop

for var i=0; i<count; i++ {

然后为您的数组中的每一项添加空值

self.catTitles.append("")

将请求放在一个单独的方法中

func doBackendCall(integer: Int) {
lib.httpGetAsNSData("http://my1test.ru/applejesus.php?task=getCategory&categoryNumber=\(integer)") {result in
...
}
}

然后在正确的索引处添加猫标题的文本

self.catTitles[integer] = title

请记住,您必须对图像执行相同的操作。

完整代码

for var i=0; i<count; i++ {
self.doBackendCall(i)
}

func doBackendCall(integer: Int) {
lib.httpGetAsNSData("http://my1test.ru/applejesus.php?task=getCategory&categoryNumber=\(integer)") {result in
let json = JSON(data: result)
let title = json["title"].stringValue
println("title: "+title)
if title.isEmpty == false {
NSURLSession.sharedSession().dataTaskWithURL(NSURL(string: "http://my1test.ru/aj/"+lib.urlencode(title)+".png")!) { (data, response, error) in
self.images.append(data)
self.catTitles[integer] = title
//self.tableViewObject.reloadData()
}.resume()
}
}
}

关于ios - 从服务器获取的数组元素,随机不同的顺序(快速),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31927520/

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