当前位置:  开发笔记 > IOS > 正文

UITableViewCell detailTextLabel没有显示出来

如何解决《UITableViewCelldetailTextLabel没有显示出来》经验,为你挑选了1个好方法。

在Swift中使用a UITableView和它UITableViewCell的.我有一些问题显示了一个detailTextLabel领域UITableViewCell.

我已经发现这两个有用的职位,但无法得到充分有效的解决方案: 迅速detailTextLabel没有显示出来, 如何设置UITableViewCellStyleSubtitle和dequeueReusableCell斯威夫特?

这是我正在使用的代码,与我的问题相关:

override func viewDidLoad() {
    super.viewDidLoad()

………….
    theTableView = UITableView(frame: tmpFrame)
………….
    theTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")
    theTableView.dataSource = self
    theTableView.delegate = self
    self.view.addSubview(theTableView)
}


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath)
    cell.backgroundColor = UIColor.clearColor()
    cell.textLabel?.text = "THE-TEXT-LABEL"
    cell.detailTextLabel?.text = "KIJILO" // This does not show up.
    return cell
}

当我尝试使用该detailTextLabel领域时UITableViewCell,它不会显示出来.在网上搜索,我知道我必须UITableViewCellStyle为单元格使用正确的样式(),但我不知道如何将该更改集成到我的代码中.我见过的例子是基于子类化的UITableViewCell,我想我不需要继承子类UITableViewCell只是为了使用该detailTextLabel字段.请告诉我,如果我错了.

我也从上面提到的帖子中尝试了一些东西,但没有任何效果,因为我想要的.



1> Patrick..:

您已注册UITableViewCell

theTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")

这意味着当你打电话时

tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath)

将使用UITableViewCellStyleDefault样式自动为您创建一个.

因为你想要一个自定义样式,你需要做一些事情:

去掉

dequeueReusableCellWithIdentifier

更换

dequeueReusableCellWithIdentifier

以下内容

theTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")

dequeueReusableCellWithIdentifier如果它不能使一个单元格出列,那么这里发生的将返回nil.然后,您可以使用指定的样式生成自己的单元格.

注意:写了没有Xcode,我是Swift的新手,如果它不编译就道歉.


我希望我给了你+10 ..!谢谢..!
推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有