शीर्ष लेख / पाद लेख स्थान को बदलने के लिए निम्नलिखित विधियों को लागू करना होगा:
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
तथा
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat
(पाद ऊंचाई को बदलने के लिए संबंधित विधियों का उपयोग करें)
निम्नलिखित कोड वर्गों के आसपास के स्थानों को पूरी तरह से हटा देता है:
public func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return nil
}
public func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return nil
}
public func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return .leastNonzeroMagnitude
}
public func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return .leastNonzeroMagnitude
}
0.0
। लेकिन यह (डिफ़ॉल्ट) 30 पॉइंट ऊंचाई के साथ एक ग्रे क्षेत्र दिखा रहा था। का उपयोग करना0.0
अस्वीकार्य है। आप ऊपर किसी भी मूल्य का उपयोग करना चाहिए0.0
जैसे0.0001
।