Я работал над запросом на выборку, который, кажется, работает нормально, используя ответ здесь: { ссылка }
import CoreData
import SwiftUI
struct DynamicFetchView<T: NSManagedObject, Content: View>: View {
let fetchRequest: FetchRequest<T>
let content: (FetchedResults<T>) -> Content
var body: some View {
self.content(fetchRequest.wrappedValue)
}
init(predicate: NSPredicate?, fetchLimit:Int = 5, sortDescriptors: [NSSortDescriptor], @ViewBuilder content: @escaping (FetchedResults<T>) -> Content) {
fetchRequest = FetchRequest<T>(entity: T.entity(), sortDescriptors: sortDescriptors, predicate: predicate, fetchLimit)
self.content = content
}
init(fetchRequest: NSFetchRequest<T>, @ViewBuilder content: @escaping (FetchedResults<T>) -> Content) {
self.fetchRequest = FetchRequest<T>(fetchRequest: fetchRequest)
self.content = content
}
}
На мой взгляд:
DynamicFetchView(predicate: NSPredicate(format: "Brand CONTAINS %@", "GAP"), sortDescriptors: [NSSortDescriptor(keyPath: \store.brandName, ascending: false)]) { (clothing: FetchedResults<Store>) in
HStack {
Text("Number of Gap products: \(clothing.count)")
.bold()
.underline()
List {
ForEach(clothing) { Store in
Text("Clothing Name: \(Store.clothingName!)")
}
}
}
DynamicFetchView
хорошо работает, чтобы показать все в запросе на выборку, однако я хотел бы ограничить его до 5. Я попытался добавить fetchLimit = 5, но это, похоже, не имело никакого значения.