5

私のコード:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject) -> PFTableViewCell{

    var cell = tableView.dequeueReusableCellWithIdentifier("CustomCell") as!
        CustomTableViewCell!
    if cell == nil {
        cell = CustomTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "CustomCell")
    }

    // Extract values from the PFObject to display in the table cell
    if let username = object["username"] as? String {
        cell.customUser.text = username
    }
    if let title = object["Title"] as? String {
        cell.customTitle.text = title
    }

    // Display image
    var initialThumbnail = UIImage(named: "Swarm_Bee.png")

    if let thumbnail = object["imageFile"] as? PFFile {

        thumbnail.getDataInBackgroundWithBlock{
            (imageData, error) -> Void in
            if error == nil {
                let image = UIImage(data: imageData!)
                cell.customImage.image = image
            }}
    }

    return cell

}

次のエラーを受け取ります

 overriding method with selector 'tableView:cellForRowAtIndexPath:object:' has incompatible type '(UITableView,NSIndexPath,PFObject) -> PFTableViewCell'

すべての互換性エラーを調べました (! を削除しています)。別の投稿にも同様の問題がありました:

Parse SDK 1.7.1 が Xcode 6.3 で動作しない

しかし、彼らの3番目のエラーだけです。その投稿の他のすべての問題は解決されましたが、このエラーは残ります。どこを見るべきかの解決策や推奨事項はありますか?

4

1 に答える 1

4

私はそれを考え出した。次のoverride関数を使用します。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> PFTableViewCell? { 
  //... 
}

違いは、PFObjectと をPFTableViewCellオプションにすることです。

于 2015-05-05T22:06:25.990 に答える