gpt4 book ai didi

ios - 从解析查询获取 tableView 中的值的延迟

转载 作者:行者123 更新时间:2023-11-29 01:39:07 26 4
gpt4 key购买 nike

我正在尝试使用 Parse 作为后端在我的应用程序中添加评论功能。

因为每次用户开始与某人聊天时,它都必须转到解析“最近” - 类,它必须检查 Arraylist 匹配项,如果该行包含匹配项,那么它必须返回一个预期值,我会将其保存在共享首选项中,否则我们会在代码本身中创建一个值并将其保存在首选项中。

解析查询工作正常并且传递了预期值,

但问题是

有时,它会延迟,但并非总是如此。我检查过问题出在存储从解析中接收值的数组。当我计算数组值时,它显示为 1、1、3、4、5、5、7。当用户键入并点击上传评论按钮时,tableview 不显示该值。如果用户因为没有看到他的评论而再次点击,由于异步,它会为他显示两条评论。

我想使用事件指示器(我只用 webView 练习),以便用户可以识别评论正在上传。但我不知道我必须使用哪种方法以及我必须为其放置代码的哪一部分。

我的问题是

对于这个问题,哪种方法是最好的使用指标,还有其他方法可以解决这个问题吗?

这是我的代码

class comment: UIViewController, UITableViewDelegate {
@IBOutlet weak var tableViewComment: UITableView!
@IBOutlet weak var textFieldComment: UITextField!

var commentArray = [String]()
var parentObjectID = String()
var userIdArray = [String]()

@IBAction func uploadComment(sender: AnyObject) {
var numberOfComment : Int = commentArray.count

self.tableViewComment.reloadData()

let comment = PFObject(className:"Comment")

comment["createdBy"] = PFUser.currentUser()
comment["comment"] = "" + textFieldComment.text
comment["parent"] = parentObjectID
comment["username"] = PFUser.currentUser()?.username

comment.saveInBackground()




// println("시작 : \(commnetArray.count)")
let numberOfCommentTwo = commentArray.count
commentArray = []

// println(" = \(numberOfComment), \(commentArray.count)")
queryComment()



if numberOfComment == numberOfCommentTwo {
println("good")

}else{

println("bad = \(numberOfComment), \(commentArray.count)")
}
//인터넷이 느린지역 바로 업로드 되지 않는 문제
//타이머를 넣어 해결 혹은 파스 서버와 대조 해보고 에러 메세지 줘야함
//혹은 클릭 하면 어레이가 늘어나는걸 확인해야함 = 어레이 안의 벨류 숫자가 한번 클릭할때 하나 늘어나면 오케이




self.tableViewComment.reloadData()
textFieldComment.text = ""

}

override func viewDidLoad() {
super.viewDidLoad()
queryComment()

}

func queryComment() {


let queryComments = PFQuery(className: "Comment")

queryComments.whereKey("parent", equalTo: "\(parentObjectID)")
queryComments.orderByAscending("createdAt")
queryComments.findObjectsInBackgroundWithBlock {
(comments: [AnyObject]?, error: NSError?) -> Void in

// comments now contains the comments for myPost

if error == nil {
//에러없는 경우
for post in comments! {
self.commentArray.append(post["comment"] as! String)
self.userIdArray.append(post["username"] as! String)


self.tableViewComment.reloadData()
// println("시작 : \(self.commentArray)")

//println("시작 : \(self.numberOfComment)")

self.tableViewComment.reloadData()
}
}else{
println(error)
}
}
}


func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

return commentArray.count

}


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell1", forIndexPath: indexPath) as! UITableViewCell

cell.textLabel?.text = self.commentArray[indexPath.row]
cell.detailTextLabel!.text = "Id:" + self.userIdArray[indexPath.row]

return cell
}

最佳答案

您可以使用事件指示器或进度 HUD 来防止用户上传两次。您还应该在上传开始后清除文本字段(类似于短信),这样用户就无法再次推送。

我强烈推荐使用 something like JGProgressHUD这将使所有这一切对你来说轻而易举。例如,您必须添加以下内容才能显示 HUD。

var progressHUD: JGProgressHUD = JGProgressHUD(style: JGProgressHUDStyle.ExtraLight)

// Show Progress HUD
progressHUD.position = JGProgressHUDPosition.Center
progressHUD.animation = JGProgressHUDFadeZoomAnimation()
progressHUD.showInView(self.view)

然后删除它

// Dismiss progress HUD
self.progressHUD.dismissAnimated(true)

@IBAction func uploadComment开头显示HUD。同时将 comment.saveInBackground() 更改为使用 comment.saveInBackgroundWithBlock 并在保存的完成 block 中关闭 HUD。

关于ios - 从解析查询获取 tableView 中的值的延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32621511/

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