我在重新加载tableView时遇到问题,这是我的一批代码:
func updateIncomingData () {
print ("Received String:")
print (receivedDataString)
print("Clearing TNU Array")
TNUArray.removeAll()
temperatureReadingArray = receivedDataString.components(separatedBy: " ")
print("temperatureReadingArray is:")
print(temperatureReadingArray)
self.temperatureReadingsTable.reloadData()
calculateTNU()
}
func calculateTNU()
{
var TNU: Double = 0.000
print("TNU Array:")
print(TNUArray)
let minValue = TNUArray.min()
print("Values MIN/MAX are:")
print(minValue ?? "nil")
let maxValue = TNUArray.max()
print(maxValue ?? "nil")
if (minValue != nil && maxValue != nil)
{
TNU = maxValue! - minValue!
calculatedTNU = String(format:"%.3f", TNU)
TNULabel.text = calculatedTNU
}
else
{
print("Max or Min had nil values")
}
}
现在,在这里你可以看到我在调用calculateTNU()之前调用reloadData()。这会调用表加载函数,特别感兴趣的是:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: temperatureReading) as! TemperatureReading
cell.channelLabel.text = channelNames[indexPath.row]
cell.readingLabel.text = temperatureReadingArray[indexPath.row]
if (channelNames.count == 1)
{
cell.toggleSwitch.isHidden = true
}
if (cell.toggleSwitch.isOn)
{
if let value = Double(cell.readingLabel.text!)
{
print("valid number, appending")
TNUArray.append(value)
}
else
{
print("Not a valid number reading")
}
}
return cell
}
现在,问题是它在完成重新加载数据之前运行calculateTNU(),这导致我的calculateTNU()函数没有任何要读取的值(因为当表填充它时也会填充所需的数组对于TNU计算)。
在执行下一个命令功能之前是否有“等到重新加载”?
答案 0 :(得分:2)
通常最好的策略是避免这种情况。您可以在其他地方呼叫BaseNamedObjects
- 可能在更改TNUArray.append
内容或更改temperatureReadingArray
状态时。
toggleSwitch
旨在填补您的细胞,您不应该在那里做任何无关的事情。