gpt4 book ai didi

swift - 使用未声明的类型 'PostTableViewCell'

转载 作者:行者123 更新时间:2023-11-30 10:49:31 25 4
gpt4 key购买 nike

似乎无法弄清楚为什么我会收到此错误。

我在下面附上了两段代码,非常感谢任何帮助

    private func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: IndexPath) -> UITableViewCell {
var cell = self.tableView.dequeueReusableCellWithIdentifier("postCell", forIndexPath: indexPath) as! PostTableViewCell <--- error is with this line
let post = self.posts![indexPath.row]
let user = post["user"] as? PFUser
let caption = post["caption"] as! String?

if let photo = post["media"] {
let imagePFFIle = photo as! PFFile
imagePFFIle.getDataInBackground(block: {(imageData: Data?, error: Error?) -> Void in
if error == nil {
if let imageData = imageData {
let image = UIImage(data:imageData)
cell.photoView.image = image
cell.usernameLabel.text = user?.username
cell.usernameLabel2.text = user?.username
cell.captionLabel.text = caption
}
}
})
}
//print("Image exists - Home View Controller")
//print("\(posts!.count)")
return cell
}

来自 Main.storyboard 的类

 <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" restorationIdentifier="" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" reuseIdentifier="postCell" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="QKL-F5-RQ0" customClass="PostTableViewCell">
<rect key="frame" x="0.0" y="71" width="375" height="596"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</tableView>

最佳答案

PostTableViewCell 可能不是正确目标的一部分。在导航器中选择文件,打开右侧的痛点并选择文件检查器。确保检查主要目标。请参阅下面的示例:enter image description here

关于swift - 使用未声明的类型 'PostTableViewCell',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54954087/

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