Swift UITableViewCell Alignment

Я пытаюсь отобразить страницу, подобную следующей

заголовок страницы (выравнивание по левому краю)

название региона (по центру)

люди в регионе (субтитры с электронной почтой в метке детализации)

Но если я выберу субтитры в качестве стиля ячейки, все будет выровнено, и я не могу изменить их в коде. Тогда, если я выберу в качестве стиля обычай, подробный текст не будет отображаться.

if(poDetailList.LastName == "POName"){
        cell.backgroundColor = SharedClass().coopGroupHeaderColor
        let selectedColor = UIView()
        selectedColor.backgroundColor = SharedClass().coopGroupHeaderColor
        cell.selectedBackgroundView = selectedColor
        cell.textLabel?.textColor = UIColor.blackColor()
        cell.textLabel?.font = UIFont.boldSystemFontOfSize(15.0)
        cell.textLabel?.textAlignment = .Center
        cell.accessoryType = .None
        var t_header = ""
        if(POShort != "OTHER" && POShort != "all" && POShort != "invalid"){
            t_header = POName
        }
        else{
            t_header = POName
        }
        cell.textLabel?.text = t_header
        cell.detailTextLabel?.text = ""
        cell.userInteractionEnabled = false;
    } else{
        cell.backgroundColor = indexPath.row % 2 == 0 ? UIColor.clearColor() : SharedClass().cellBackGroundColor
        let selectedColor = UIView()
        selectedColor.backgroundColor = SharedClass().selectedCellColor
        cell.selectedBackgroundView = selectedColor
        cell.textLabel?.font = UIFont.boldSystemFontOfSize(15.0)
        cell.textLabel?.textAlignment = .Left
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator
        var t_header = poDetailList.FirstName
        cell.textLabel?.text = "Name:" + poDetailList.FirstName + " " + poDetailList.LastName
        cell.detailTextLabel?.text = "Not Responded In Days:" + poDetailList.DaysNotResponded
        cell.userInteractionEnabled = true;
    }

Кто-нибудь может мне с этим помочь?

большое спасибо

1 ответ

Решение

Установить выравнивание для обеих меток

cell.textLabel?.textAlignment = .Left
cell.detailTextLabel?.textAlignment = .Right

я надеюсь, что это работает!!!

Другие вопросы по тегам