“Zmień kolor tła Kolor nagłówka sekcji Uititaview” Kod odpowiedzi

Swift Jak zmienić kolor nagłówka

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let returnedView = UIView(frame: CGRectMake(x, y, width, height)) //set these values as necessary
    returnedView.backgroundColor = UIColor.lightGrayColor()

    let label = UILabel(frame: CGRectMake(labelX, labelY, labelWidth, labelHeight))
    label.text = self.sectionHeaderTitleArray[section]
    returnedView.addSubview(label)

    return returnedView
}
Impossible Ibex

Zmień kolor tła Kolor nagłówka sekcji Uititaview

func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    (view as! UITableViewHeaderFooterView).contentView.backgroundColor = UIColor.black.withAlphaComponent(0.4)
    (view as! UITableViewHeaderFooterView).textLabel?.textColor = UIColor.white
}
Everybody Poops

Odpowiedzi podobne do “Zmień kolor tła Kolor nagłówka sekcji Uititaview”

Pytania podobne do “Zmień kolor tła Kolor nagłówka sekcji Uititaview”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu