gpt4 book ai didi

ios - Xcode I Tableview viewItemWithTag 无法从 UITableViewCell 转换为 UIImageView

转载 作者:行者123 更新时间:2023-11-28 11:36:34 25 4
gpt4 key购买 nike

那是 cellForRowAtIndexPath 函数。我想设置单元格的 UIImageView child 的照片,但我无法为此创建导出。它崩溃说:

Could not cast value of type 'UITableViewCell' (0x22d3e0f40) to 'UIImageView' (0x22d3e5810)

let cell = tableView.dequeueReusableCell(withIdentifier: "PostCell", for: indexPath)    
let profileImageView = cell.viewWithTag(0) as! UIImageView
return cell

最佳答案

默认情况下,每个 View 都有 0 标签,因此您需要从 Storyboard中将标签 1 提供给您的 UIImageView ,然后您需要替换

let profileImageView = cell.viewWithTag(0) as! UIImageView

 let profileImageView = cell.viewWithTag(1) as! UIImageView

关于ios - Xcode I Tableview viewItemWithTag 无法从 UITableViewCell 转换为 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55126451/

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