斯威夫特:没有一个名为
Posted
技术标签:
【中文标题】斯威夫特:没有一个名为【英文标题】:Swift: Does not have a member named 【发布时间】:2014-11-09 02:17:59 【问题描述】:我试图弄清楚 Swift 是如何工作的。现在我正在处理表格视图单元格,但似乎有问题。
import UIKit
class ProfileTableViewCell : UITableViewCell
@IBOutlet var profilePicImageView: UIImageView!
@IBOutlet var profileNameText: UILabel!
过
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
var cellResult :Dictionary<CellType, Dictionary<String, String>> = menuList[indexPath.row]
var cellType: CellType = Array(cellResult.keys)[0]
var cellData: Dictionary<String, String> = cellResult[cellType] as Dictionary<String, String>!
if(cellType == CellType.Profile)
var cell = tableView.dequeueReusableCellWithIdentifier("DisplayPicCellIdentifier") as? ProfileTableViewCell
if (cell == nil)
cell = ProfileTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "DisplayPicCellIdentifier")
cell.profileNameText!.text! = cellData["displayName"] // Error 'ProfileTableViewCell? does not have member named 'profileNameText'
// cell.setProfileNameText(cellData["displayName"])
return cell!
我不断收到此错误,在 profileNameText 中没有指定成员,请问我该如何解决此问题?
谢谢
【问题讨论】:
【参考方案1】:您应该将行更改为
cell!.profileNameText.text = cellData["displayName"]
【讨论】:
以上是关于斯威夫特:没有一个名为的主要内容,如果未能解决你的问题,请参考以下文章
斯威夫特:我怎样才能让一个监听器报告连接何时丢失以及何时恢复?