所以问题很简单,就在标题中。我想在SwiftUI iOS 14中删除行分隔符。以前,我使用的是
UITableView().appearance().separatorStyle = .none
过去曾在iOS 13中完成过这项工作。现在,它不起作用。有关如何使其工作的任何更新或想法。谢谢:)
答案 0 :(得分:22)
这里是可能解决方案的演示。经过Xcode 12b测试。
List {
ForEach(0..<3) { _ in
VStack {
Text("Hello, World!").padding(.leading)
}
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading)
.listRowInsets(EdgeInsets())
.background(Color.white)
}
}
答案 1 :(得分:5)
我如何制作可在iOS 14和iOS 13上使用的列表,它没有分隔符和多余的边距
struct NoButtonStyle: ButtonStyle {
func makeBody(configuration: Self.Configuration) -> some View {
configuration.label
}
}
struct ListWithoutSepatorsAndMargins<Content: View>: View {
let content: () -> Content
var body: some View {
if #available(iOS 14.0, *) {
ScrollView {
LazyVStack(spacing: 0) {
self.content()
}
.buttonStyle(NoButtonStyle())
}
} else {
List {
self.content()
}
.listStyle(PlainListStyle())
.buttonStyle(NoButtonStyle())
}
}
}
样品用量-
ListWithoutSepatorsAndMargins {
ForEach(0..<5) { _ in
Text("Content")
}
}
如果列表中有更多组件,请将它们包装在“组”中
ListWithoutSepatorsAndMargins {
Group {
self.groupSearchResults()
self.myGroups()
self.exploreGroups()
}
}
}
希望这对某人有帮助,我在这种次要的事情上浪费了很多时间,苹果正在努力促使我们努力使用LazyVStack,看来
答案 2 :(得分:4)
我在 Apple Developer 论坛上找到了这个简单的解决方案。它在 14.4 上对我有用:
List {
...
}.listStyle(SidebarListStyle())
这似乎在边缘添加了一点点填充。如果这对你来说是个问题,你可以尝试一些负填充。
答案 3 :(得分:2)
将@ asperi,@ akmin和@zrfrank合并为一件事。根据我的经验,List
比LazyVStack
更可靠,更高效,因此对于需要可靠性的任何复杂情况,我仍然使用List
。
extension View {
func listRow() -> some View {
self.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading)
.listRowInsets(EdgeInsets(top: -1, leading: -1, bottom: -1, trailing: -1))
.background(Color(.systemBackground))
}
}
List {
Color.red
.listRow()
Color.green
.listRow()
}
答案 4 :(得分:2)
基于 average Joe's answer 我最终得到了以下修饰符:
struct ListSeparatorNone: ViewModifier {
var backgroundColor: Color = Color(.systemBackground)
func body(content: Content) -> some View {
content
.listRowInsets(EdgeInsets(top: -1, leading: 0, bottom: 0, trailing: 0))
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading)
.background(backgroundColor)
}
}
视图扩展:
extension View {
func listSeparatorNone(backgroundColor: Color = Color(.systemBackground)) -> some View {
self.modifier(ListSeparatorNone(backgroundColor: backgroundColor))
}
}
用法示例:
List {
ForEach(viewModel.countries, id: \.self) { country in
Text(country)
.padding(.leading, 10)
}
.listSeparatorNone()
}
答案 5 :(得分:0)
如果您没有很多单元,因此不需要依赖LazyVStack来提高性能,则可以使用ScrollView + VStack:
ScrollView {
VStack {
Row1()
Row2()
Row3()
}
}
答案 6 :(得分:0)
您还可以在VStack的末尾(位于列表内部)调用此函数。
它将在iOS 14的列表分隔符上叠加:)
private func hideDefaultListSeperator() -> some View {
Rectangle()
.fill(colorScheme == .light ? Color.white : Color.black)
.frame(maxHeight: 1)
}
答案 7 :(得分:0)
更新:
我找到了一个适用于 iOS 13 和 iOS 14 的解决方案,并提供了一个简单的列表,并在两个 iOS 上使用 List。
struct ListWithoutSepatorsAndMargins<Content>: View where Content: View {
let content: () -> Content
init(@ViewBuilder content: @escaping () -> Content) {
self.content = content
}
var body: some View {
List {
self.content()
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .center)
.listRowInsets(EdgeInsets())
.background(Color.white)
}
.listStyle(PlainListStyle())
.buttonStyle(NoButtonStyle())
}
}
struct NoButtonStyle: ButtonStyle {
func makeBody(configuration: Self.Configuration) -> some View {
configuration.label
}
并在 SceneDelegate.swift 中执行以下操作以删除单元格的默认灰色选择
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
UITableView.appearance().separatorStyle = .none
UITableView.appearance().allowsSelection = false
.......
我们可以通过以下方式使用它
ListWithoutSepatorsAndMargins {
ForEach(0..<5) { _ in
Text("Content")
}
}
ListWithoutSepatorsAndMargins {
Group {
self.groupSearchResults()
self.myGroups()
self.exploreGroups()
}
}
}
答案 8 :(得分:0)
这是我的 iOS 14 解决方案:
struct MyRowView: View {
var body: some View {
ZStack(alignment: .leading) {
// Background color of the Row. It will spread under the entire row.
Color(.systemBackground)
NavigationLink(destination: Text("Details")) {
EmptyView()
}
.opacity(0) // Hide the Disclosure Indicator
Text("Go to Details").padding(.leading)
}
// These 2 lines hide the row separators
.padding(.horizontal, -16) // Removes default horizontal padding
.padding(.vertical, -6) // Removes default vertical padding
}
}
封闭列表应该有这个修饰符
<块引用>.listStyle(PlainListStyle())
与使用 LazyVStack 相比,此解决方案的优点是您仍然可以使用 List 的编辑功能。
不幸的是,此解决方案依赖于硬编码值来删除每行的系统默认填充。希望 SwiftUI 3.0 将提供简单的 .separatorStyle(.none) 和 .accessoryType(.none) 修饰符。
删除披露指标的代码来自:https://www.appcoda.com/hide-disclosure-indicator-swiftui-list/
答案 9 :(得分:0)
今年 Apple 推出了一个新的修饰符 .listRowSeparator
,可用于设置分隔符的样式。你可以通过 .hidden
来隐藏它:
List {
ForEach(items, id:\.self) {
Text("Row \($0)")
.listRowSeparator(.hidden)
}
}
答案 10 :(得分:-4)
上面的答案对我有用,您只需要在两个功能下面都进行设置:
.listRowInsets(EdgeInsets())
.background(Color.white)