From 8d5133377383d5a64716fa3c3bf9f5d28e0d8a70 Mon Sep 17 00:00:00 2001 From: Joon Baek Date: Sun, 4 Jun 2023 21:22:22 +0900 Subject: [PATCH] =?UTF-8?q?[Chore]=20#27=20-=20=EB=B6=88=ED=95=84=EC=9A=94?= =?UTF-8?q?=ED=95=9C=20=EC=A3=BC=EC=84=9D=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Instagram-iOS/Screens/DMList/DMList.swift | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Instagram-iOS/Instagram-iOS/Screens/DMList/DMList.swift b/Instagram-iOS/Instagram-iOS/Screens/DMList/DMList.swift index a40147f..d7f93ca 100644 --- a/Instagram-iOS/Instagram-iOS/Screens/DMList/DMList.swift +++ b/Instagram-iOS/Instagram-iOS/Screens/DMList/DMList.swift @@ -99,24 +99,10 @@ final class DMListViewController: BaseViewController { extension DMListViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { -// switch section { -// case 0: -// return DMTableViewHeader() -// default: -// guard let header = tableView.dequeueReusableHeaderFooterView(withIdentifier: DMTableViewCellHeader.identifier) as? DMTableViewCellHeader else {fatalError("header fail")} -// return header -// } return DMTableViewHeader() } func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { -// switch section { -// case 0: -// return 172 -// default: -// return 47 -// } - return 172 + 42 } }