我有一张桌子,上面放着一些图片。然后,我希望当用户单击单元格时图片消失并显示一些标签。但是,每当我尝试从didSelectRowAtIndexPath引用IBoutlet时,它们都将返回nil。我在这里做错了什么?
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//setting up the table cell to populate the Model Data
var moCell:modelCell = self.tableView.dequeueReusableCellWithIdentifier("moCell") as! modelCell
photo[indexPath.row].getDataInBackgroundWithBlock{
(imageData: NSData?, error: NSError?) -> Void in
if error == nil {
let modelImage = UIImage(data: imageData!)
moCell.modelPhoto.image = modelImage
}
}
return moCell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
var moCell:modelCell = self.tableView.dequeueReusableCellWithIdentifier("moCell") as! modelCell
moCell.top.text = modelsInRange[indexPath.row]
moCell.middle.text = "\(genNumber[indexPath.row]) Generation"
moCell.bottom.text = "\(startYear[indexPath.row]) - \(endYear[indexPath.row])"
}
最佳答案
您正在呼叫dequeueReusableCellWithIdentifier(id)
上的didSelectRowAtIndexPath
,因此不会获得选定的单元格。
我将修改您的cellForRowAtIndexPath
实现并重新加载表数据。在单元格子类上标记一些标志,以便您可以进行检查并在cellForRowAtIndexPath
上进行相应设置。甚至更好,只需重新加载单个单元格即可。
我所说的一个非常简单的例子是:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//setting up the table cell to populate the Model Data
var moCell:modelCell = self.tableView.dequeueReusableCellWithIdentifier("moCell") as! modelCell
if (photo[indexPath.row].isSelected)
{
moCell.top.text = modelsInRange[indexPath.row]
moCell.middle.text = "\(genNumber[indexPath.row]) Generation"
moCell.bottom.text = "\(startYear[indexPath.row]) - \(endYear[indexPath.row])"
} else
{
photo[indexPath.row].getDataInBackgroundWithBlock{
(imageData: NSData?, error: NSError?) -> Void in
if error == nil {
let modelImage = UIImage(data: imageData!)
moCell.modelPhoto.image = modelImage
}
}
return moCell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
photo[indexPath.row].isSelected = YES
self.tableView.reloadData()
}
关于ios - 无法从didSelectRowAtIndexPath引用cellForRowAtIndexPath中的IBoutlet,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29830318/