8

我试图隐藏列表中单元格之间的分隔符,但根据 Apple 的文档,似乎没有办法做到这一点。

知道怎么做吗?

4

1 回答 1

13

iOS 15:

今年 Apple 推出了一种新的修饰符.listRowSeparator,可用于设置分隔符的样式。你可以通过.hidden隐藏它:

List {
    ForEach(items, id:\.self) { 
        Text("Row \($0)")
            .listRowSeparator(.hidden)
    }
}

iOS 14

在 iOS 14 中,您可以考虑LazyVStack为此使用而不是列表:

ScrollView {
    LazyVStack {
        ForEach((1...100), id: \.self) {
           Text("Placeholder \($0)")
        }
    }
}

请记住,这LazyVStack是惰性的,并且不会一直呈现所有行。因此它们的性能非常好,并且是 Apple 自己在 WWDC 2020 中提出的。


iOS 13

iOS的UITableViewSwiftUI有其背后的原因。List所以要删除

额外的分隔符(在列表下方):

你需要一个tableFooterViewand 删除

所有分隔符(包括实际分隔符):

separatorStyle需要.none

init() {
    // To remove only extra separators below the list:
    UITableView.appearance().tableFooterView = UIView()

    // To remove all separators including the actual ones:
    UITableView.appearance().separatorStyle = .none
}

var body: some View {
    List {
        Text("Item 1")
        Text("Item 2")
        Text("Item 3")
    }
}
于 2019-10-17T06:56:35.070 回答