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

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

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
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...