শিরোলেখ / পাদলেখের স্থান পরিবর্তন করতে নিম্নলিখিত পদ্ধতিগুলি প্রয়োগ করতে হবে:
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
।