Commit 4d32c4c1 authored by David黄金龙's avatar David黄金龙
parents 54db73f2 242658a6
...@@ -75,10 +75,7 @@ class YHSearchInfomationVC: YHBaseViewController { ...@@ -75,10 +75,7 @@ class YHSearchInfomationVC: YHBaseViewController {
lazy var tableView: UITableView = { lazy var tableView: UITableView = {
let tableView = UITableView(frame:.zero, style:.grouped) let tableView = UITableView(frame:.zero, style:.grouped)
tableView.contentInsetAdjustmentBehavior = .never
if #available(iOS 11.0, *) {
tableView.contentInsetAdjustmentBehavior = .never
}
tableView.estimatedSectionHeaderHeight = 0.1 tableView.estimatedSectionHeaderHeight = 0.1
tableView.estimatedSectionFooterHeight = 20.0 tableView.estimatedSectionFooterHeight = 20.0
tableView.showsVerticalScrollIndicator = false tableView.showsVerticalScrollIndicator = false
......
...@@ -39,7 +39,7 @@ class YHSearchInfoCell: UITableViewCell { ...@@ -39,7 +39,7 @@ class YHSearchInfoCell: UITableViewCell {
lazy var titleLabel: UILabel = { lazy var titleLabel: UILabel = {
var label = UILabel() var label = UILabel()
label.font = .PFSC_R(ofSize: 12) label.font = .PFSC_R(ofSize: 15)
label.textAlignment = .left label.textAlignment = .left
label.textColor = UIColor(hex: 0x121A26) label.textColor = UIColor(hex: 0x121A26)
label.numberOfLines = 2 label.numberOfLines = 2
......
...@@ -14,6 +14,7 @@ class YHMyNotifySettingVC: YHBaseViewController { ...@@ -14,6 +14,7 @@ class YHMyNotifySettingVC: YHBaseViewController {
lazy var tableView: UITableView = { lazy var tableView: UITableView = {
let tableView = UITableView(frame:.zero, style:.grouped) let tableView = UITableView(frame:.zero, style:.grouped)
tableView.contentInsetAdjustmentBehavior = .never
tableView.estimatedSectionFooterHeight = 1.0 tableView.estimatedSectionFooterHeight = 1.0
tableView.showsVerticalScrollIndicator = false tableView.showsVerticalScrollIndicator = false
tableView.separatorStyle = .none tableView.separatorStyle = .none
......
...@@ -38,6 +38,7 @@ class YHMyPermissionSettingVC: YHBaseViewController { ...@@ -38,6 +38,7 @@ class YHMyPermissionSettingVC: YHBaseViewController {
lazy var tableView: UITableView = { lazy var tableView: UITableView = {
let tableView = UITableView(frame:.zero, style:.grouped) let tableView = UITableView(frame:.zero, style:.grouped)
tableView.contentInsetAdjustmentBehavior = .never
tableView.estimatedSectionFooterHeight = 1.0 tableView.estimatedSectionFooterHeight = 1.0
tableView.showsVerticalScrollIndicator = false tableView.showsVerticalScrollIndicator = false
tableView.separatorStyle = .none tableView.separatorStyle = .none
......
...@@ -13,9 +13,7 @@ class YHMySettingViewController: YHBaseViewController, ConstraintRelatableTarget ...@@ -13,9 +13,7 @@ class YHMySettingViewController: YHBaseViewController, ConstraintRelatableTarget
lazy var tableView: UITableView = { lazy var tableView: UITableView = {
let tableView = UITableView(frame: CGRect.zero, style:.plain) let tableView = UITableView(frame: CGRect.zero, style:.plain)
if #available(iOS 11.0, *) { tableView.contentInsetAdjustmentBehavior = .never
tableView.contentInsetAdjustmentBehavior = .never
}
tableView.backgroundColor = .white tableView.backgroundColor = .white
tableView.separatorStyle = .none tableView.separatorStyle = .none
tableView.register(YHMySettingCell.self, forCellReuseIdentifier: YHMySettingCell.cellReuseIdentifier) tableView.register(YHMySettingCell.self, forCellReuseIdentifier: YHMySettingCell.cellReuseIdentifier)
......
...@@ -48,9 +48,7 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget { ...@@ -48,9 +48,7 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget {
lazy var tableView: UITableView = { lazy var tableView: UITableView = {
let tableView = UITableView(frame: CGRect.zero, style:.grouped) let tableView = UITableView(frame: CGRect.zero, style:.grouped)
if #available(iOS 11.0, *) { tableView.contentInsetAdjustmentBehavior = .never
tableView.contentInsetAdjustmentBehavior = .never
}
tableView.estimatedSectionHeaderHeight = 1.0 tableView.estimatedSectionHeaderHeight = 1.0
tableView.showsVerticalScrollIndicator = false tableView.showsVerticalScrollIndicator = false
tableView.tableHeaderView = headerView tableView.tableHeaderView = headerView
...@@ -156,6 +154,7 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget { ...@@ -156,6 +154,7 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget {
gk_navigationBar.isHidden = true gk_navigationBar.isHidden = true
view.addSubview(tableView) view.addSubview(tableView)
self.view.backgroundColor = .white
updateUserUI() updateUserUI()
...@@ -275,6 +274,24 @@ extension YHMyViewController : UITableViewDelegate, UITableViewDataSource { ...@@ -275,6 +274,24 @@ extension YHMyViewController : UITableViewDelegate, UITableViewDataSource {
printLog("不需要响应") printLog("不需要响应")
} }
} }
private func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> CGFloat {
return 1.0
}
private func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> CGFloat {
return 1.0
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return UIView()
}
} }
extension YHMyViewController { extension YHMyViewController {
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "更多内容敬请期待@2x.png", "filename" : "Group 3098@2x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "更多内容敬请期待@3x.png", "filename" : "Group 3098@3x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment