简体   繁体   中英

Converting Objective to Swift Table view not displaying the data in the cells

I'm still very inexperienced with Swift and am having a problem converting an objective-c based app. Most of the app is working ... including changing size and colors of section headers and background color of the cells but I cannot display the content of the cells (a TextView and a switch). Any suggestions about fixing this would be appreciated. I'm including the code where I change the background color which is where I suspect the problem resides:

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

    //variable type is inferred
    var index = indexPath.row

    NSLog ("index %d",indexPath)

    var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as? UITableViewCell

    if cell == nil {
        cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")
    }

    //we know that cell is not empty now so we use ! to force unwrapping
    var grayishCyan = colorWithHexString("#9bc2c2")
    var grayishRed = colorWithHexString("#ffc2c2")

    if (indexPath.row == 0 || indexPath.row%2 == 0) {
        cell!.backgroundColor = grayishCyan;
    }
    else {
        cell!.backgroundColor = grayishRed
    }

    return cell!
} // end of cellForRowAtIndexPath

我删除了cellForRowAtIndexPath函数,并将其替换为willDisplayCell函数

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM