嗨我试图将图像从我的照片库导入到tableview我知道怎么做但我在导入图像时遇到了一些问题导入到所有单元格 例如:如果我有4个不同的单元格,1个是汽车,2个是船,3个是airplain,4个是滑板。每个单独的细胞都有自己的图像,但是当我上传一只鸟的图像时,#34;然后所有单元格图像成为我导入的最后一个图像。
我只想为每个细胞植入不同的图像。感谢。
这是我的代码:
public func tableView(_ tableView: UITableView, cellForRowAt indexPath:
IndexPath) -> UITableViewCell{
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as!
ViewControllerTableViewCell
cell.myImage.image = UIImage(named: (actys[indexPath.row] + ".jpg"))
cell.myImage.image = cellImage
cell.myLabel.text = actys[indexPath.row]
return(cell)
}
并在"导入图像视图控制器"我写了这个:
@IBAction func doneEditing(_ sender: Any) {
if (addTitle.text != ""){
actys.append(addTitle.text!)
addTitle.text = ""
}
if (newImage.image != nil){
cellImage = (newImage.image)!
}
}
注意:有一个" cellImage"
的全局变量