UILabel文字问题

时间:2019-01-03 10:18:59

标签: swift uilabel

我只创建一个视图控制器,其中有一个UITableView和UITextView。在TableView单元格中,我有一个“四个标签”,其中我只是从“主要”设置中从标签中删除了文本,但我发现即使删除所有文本,某些文本也只是保持固定的位置。这是附件图像。查看H.O. - Mahasagar Travel LTD

enter image description here

当我tableView获取tableView数据时,它是从第二个单元格而不是第一个单元格显示的。 H.O. - Mahasagar Travel LTD保留在第一个单元格中。这是图像。

enter image description here

我还删除了表View并重置了所有内容,但文本仍然是它们。请提出任何删除建议。这是代码。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "ContactCell") as! ContactCell
        cell.selectionStyle = .none
        if indexPath.section == 0 {
            let contact = arrHeadOffice[indexPath.row]
            cell.lblAddress.attributedText = contact.strCityAreaHtml
        } else {
            let contact = arrSelectedOffice[indexPath.row]
            cell.lblTitle.attributedText = contact.CityAreaName.getContactAttributed()
            cell.lblContact.attributedText = contact.strContactHtml
            cell.lblAddress.attributedText = contact.strAddressHtml
            cell.lblState.attributedText = contact.strCityAreaHtml
        }
        return cell
    }

1 个答案:

答案 0 :(得分:0)

您能检查一下是否在诸如XIb,情节提要之类的地方对字符串进行了硬编码吗?