Xcode 6.3 Parse SDK 1.7.1 PFTableViewCell Error “has incompatible type”
问题 My code: 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 }