Tag: afhtpsessionmanager

file upload进度问题

我使用AFNetworking在表格视图单元格中上传单个文件。 上传工作正常。 但是,当我从视图中滚动我的单元格时,进度消失了,或者显示了不同的进度值,例如20%或50%,以及30%。 这是我的代码: //Tableview Cell configure var cell : ChattingPhotoCell! if message.vendorType == .Receiver { //Receive Image message cell = tableView.dequeueReusableCell(withIdentifier: "ReceiveChattingPhotoCell") as! ChattingPhotoCell if cell == nil { cell = Bundle.main.loadNibNamed("ReceiveChattingPhotoCell", owner: self, options: nil)?[0] as! ChattingPhotoCell } cell.reloadDelegate = self cell.mDelegate = self cell.accessoryType = cell.isSelected ? .checkmark : .none cell.conficureImageCell(msg: message,indexPath: […]