admin管理员组文章数量:1347695
I want to have a SwiftUI List to be filled with array items that is a part protocol type. Here is a snippet I have :
import Foundation
import SwiftUI
struct ScanItem: Hashable, Equatable, Identifiable {
let id: UUID
let name: String
let rssi: Int
let peripheral: Peripheral?
func hash(into hasher: inout Hasher) {
hasherbine(id)
}
static func == (lhs: ScanItem, rhs: ScanItem) -> Bool {
return lhs.id == rhs.id
}
}
protocol ScanProtocol: ObservableObject {
var isScanning: Bool { get }
var peripherals: [ScanItem] { get }
var error: String? { get }
func startScan()
func stopScan()
}
struct FoundDeviceListView<Model>: View where Model: ScanProtocol {
@ObservedObject var scanModel: Model
var body : some View {
List(scanModel.peripherals) { item in
Text("\(item.name) ( \(item.identifier) ) \(item.rssi) dBm")
}
}
}
#Preview {
@Previewable @StateObject var model = ScanEmulator()
FoundDeviceListView(scanModel: model)
}
But I get 2 compile-time issues:
- Cannot convert value of type '[ScanItem]' to expected argument type 'Binding'
- Generic parameter 'Data' could not be inferred
What should be done to fix it?
I want to have a SwiftUI List to be filled with array items that is a part protocol type. Here is a snippet I have :
import Foundation
import SwiftUI
struct ScanItem: Hashable, Equatable, Identifiable {
let id: UUID
let name: String
let rssi: Int
let peripheral: Peripheral?
func hash(into hasher: inout Hasher) {
hasherbine(id)
}
static func == (lhs: ScanItem, rhs: ScanItem) -> Bool {
return lhs.id == rhs.id
}
}
protocol ScanProtocol: ObservableObject {
var isScanning: Bool { get }
var peripherals: [ScanItem] { get }
var error: String? { get }
func startScan()
func stopScan()
}
struct FoundDeviceListView<Model>: View where Model: ScanProtocol {
@ObservedObject var scanModel: Model
var body : some View {
List(scanModel.peripherals) { item in
Text("\(item.name) ( \(item.identifier) ) \(item.rssi) dBm")
}
}
}
#Preview {
@Previewable @StateObject var model = ScanEmulator()
FoundDeviceListView(scanModel: model)
}
But I get 2 compile-time issues:
- Cannot convert value of type '[ScanItem]' to expected argument type 'Binding'
- Generic parameter 'Data' could not be inferred
What should be done to fix it?
Share Improve this question edited 2 days ago malhal 30.9k7 gold badges123 silver badges150 bronze badges asked 2 days ago DmitryDmitry 2,1683 gold badges23 silver badges34 bronze badges 3 |2 Answers
Reset to default 0// Generic View with List
struct FoundDeviceListView<ViewModel, Data>: View where ViewModel: ScanViewModelProtocol, Data: RandomAccessCollection, Data.Element: Identifiable {
@ObservedObject var scanModel: ViewModel
var items: Data
var body: some View {
List(items) { item in
if let device = item as? ScanViewListItem {
Text("\(device.name) (\(device.id)) \(device.rssi) dBm")
}
}
}
}
FoundDeviceListView(scanModel: ScanViewModelEmulator(), items:
ScanViewModelEmulator().peripherals)
I guess, I found a solution - hope that would safe some time for future readers
struct FoundDeviceListView<Model>: View where Model: ScanProtocol {
@ObservedObject var scanModel: Model
var body : some View {
List(scanModel.peripherals, id: \.identifier) { peripheral in
NavigationLink(
"\(peripheral.name) ( \(peripheral.identifier) ) \(peripheral.rssi) dBm",
value: peripheral
)
.frame(height: 100, alignment: .center)
.font(scanModel.isScanning ? .title : .largeTitle.bold())
.foregroundStyle(.blue)
}
.navigationDestination(for: ScanItem.self) { item in
ConnectedDeviceView(uuid: item.identifier, deviceName: item.name)
}
.navigationTitle("Обнаруженные устройства")
.font(.title)
.disabled(scanModel.isScanning)
}
}
本文标签: SwiftUI Use generic type for ListStack Overflow
版权声明:本文标题:SwiftUI: Use generic type for List - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743839090a2547947.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
identifier
defined? I'm able to compile your code after removingitem.identifier
– SwiftyJoeyy Commented 2 days ago