gpt4 book ai didi

swift - 只有一个自定义 tableviewcell 正常工作

转载 作者:行者123 更新时间:2023-11-30 13:41:24 25 4
gpt4 key购买 nike

我创建了一个带有照片和两个标签的自定义 tableviewcell。我从解析中查询了一些数据,单元格应该更新图像和标签以反射(reflect)查询,但是只有第一个视单元可以正常工作。图像和标签有效,但是第二个视单元仅正确显示图像,uilabel 不显示任何文本。我多次查看了代码,似乎无法弄清楚我做错了什么......

   override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("mySpotCell")/*, forIndexPath: indexPath)*/as? CustomTableViewCell

// cell = PFTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")

if let value = mySpots[indexPath.row]["location"] {
let location = CLLocation(latitude: (value.latitude)!, longitude: (value.longitude)!)

self.geoCoder.reverseGeocodeLocation(location, completionHandler: { (placemark, error) -> Void in
if error != nil {
print("error: \(error!.localizedDescription)")
}
if let pm: CLPlacemark = placemark![indexPath.row] {
// var pm = placemark![indexPath.row] as CLPlacemark
//self.parkingSpotAddress.text = pm.thoroughfare
// self.navigationController?.navigationBar.topItem?.title = pm.thoroughfare
//cell!.textLabel?.text = "\(pm.subThoroughfare!) \(pm.thoroughfare!)"
cell?.subtitleLabel.text = "\(pm.subThoroughfare!) \(pm.thoroughfare!)"
cell?.titleLabel.text = pm.description
print(cell?.subtitleLabel.text)
print(cell?.titleLabel.text)
}
})
if let parkingSpotImageFile: PFFile = mySpots[indexPath.row]["firstPhoto"] as! PFFile! {
parkingSpotImageFile.getDataInBackgroundWithBlock({ (imageData, error) -> Void in
if error == nil {
cell?.spotImageView.image = UIImage(data: imageData!)
// self.imageIndicator.stopAnimating()
// self.imageIndicator.hidden = true
}
})

}

最佳答案

我认为您可以首先检查您的 func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int 。您返回的值是它将在表格 View 中显示和加载的行数。

我的 cellForRowAtIndex 是这样的,我想你的也应该没问题。只需检查部分中的行数即可。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell:MenuTableViewCell = tbvMenu.dequeueReusableCellWithIdentifier("identifier") as! MenuTableViewCell
let temp:String = MenuArr[indexPath.row] as! String
cell.mainMenuTitle.text = temp
return cell
}

关于swift - 只有一个自定义 tableviewcell 正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35531095/

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