在动态原型的故事板中创建的单元格上的detailTextLabel仅在选择单元格后出现?

时间:2014-09-18 07:44:01

标签: ios uitableview storyboard interface-builder

我正在添加如下的单元格。在选择单元格之前,在选择textLabel之后也只能看到detailTextLabel。为什么detailTextLabel不在屏幕上?

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("ooo", forIndexPath: indexPath) as UITableViewCell
    cell.textLabel!.textColor = UIColor.whiteColor()
    cell.textLabel!.text = "asdf1"
    cell.detailTextLabel!.textColor = UIColor.whiteColor()
    cell.detailTextLabel!.text = "asdf2"

    return cell
}

0 个答案:

没有答案