-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ios15系统运行顶部标题栏和数据表格间出现间隔 #5
Comments
我也遇到了同样的问题,其原因是iOS 15 TableView多了一个sectionHeaderTopPadding选项,在CXLinkageSheetView文件里将leftTableView和rightTableView他们的属性设置为0即可
希望能有帮助 |
好的好的,多谢你的指正和帮助。
…------------------ 原始邮件 ------------------
发件人: "CXTretar/CXLinkageSheetDemo" ***@***.***>;
发送时间: 2021年11月12日(星期五) 上午9:32
***@***.***>;
***@***.******@***.***>;
主题: Re: [CXTretar/CXLinkageSheetDemo] ios15系统运行顶部标题栏和数据表格间出现间隔 (Issue #5)
我也遇到了同样的问题,其原因是iOS 15 TableView多了一个sectionHeaderTopPadding选项,在CXLinkageSheetView文件里将leftTableView和rightTableView他们的属性设置为0即可
` if ***@***.***(iOS 15.0, *)) {
_rightTableView.sectionHeaderTopPadding = 0;
} else {
// Fallback on earlier versions
}
if ***@***.***(iOS 15.0, *)) { _leftTableView.sectionHeaderTopPadding = 0; } else { // Fallback on earlier versions }`
希望能有帮助
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
在ios15系统的模拟器下运行会出现顶部标题栏和数据表格间出现一段隔断的空白区域
The text was updated successfully, but these errors were encountered: