Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

uitableview - Reduce space between header and table view cell in swift

I have table view with custom header and a cell with single section. I want to reduce the space between the header and the 1st cell. I have used heightforrow method as follows:

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        if tableView == tableview1
        {
            return 1
        }
        else
        {
            return 0
        }
    }

This did not have any effect on the spacing. The height of the header is 774.The cell starts from 798 and it is grayed out as shown in the image. enter image description here

How to reduce the space of it which is shown below.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try using Float.leastNonzeroMagnitude instead of zero

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    if tableView == tableview1
    {
        return CGFloat(Float.leastNonzeroMagnitude)
    }
    else
    {
        return 0
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...