How can we add image in UITableView section header using swift?

前端 未结 6 1498
盖世英雄少女心
盖世英雄少女心 2021-02-04 10:54

In my willDisplayHeaderView I have changed color of section header But I want to add an image before section title. Any help? My code for willDisplayHeaderView is



        
6条回答
  •  孤独总比滥情好
    2021-02-04 11:33

    This will work with swift 4

    override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        let headerImage: UIImage = UIImage(named: "image")!
        let headerView = UIImageView(image: headerImage)
        return headerView
    }
    

提交回复
热议问题