gpt4 book ai didi

Swift - 为循环获取多个一对多值 - 转换为不相关的类型

转载 作者:行者123 更新时间:2023-11-30 10:58:16 25 4
gpt4 key购买 nike

我正在尝试从一对多关系中获取数据,但是除非将获取的数据转换为数组,否则我无法访问它们的值。

我的人际关系是这样的:

enter image description here

我这样保存:

@IBAction func saveButton(_ sender: UIButton) {
print("save")
guard let appDelegate = UIApplication.shared.delegate as? AppDelegate else {
return
}
let context = appDelegate.persistentContainer.viewContext
let workout = Workout(context: context)
workout.name = workoutName.text
workout.noOfSets = Int16(setsStepper.value)

for index in 0..<setsVal {
let sets = Sets(context: context)
let test = IndexPath(row: index, section: 0)
let cell = tableView.cellForRow(at: test) as! RepsTableViewCell
sets.repAmount = Int16(cell.repsStepper.value)
print(sets.repAmount)
workout.addToSets(sets)
}
try! context.save()
}

我是这样获取的:

func fetch() {
guard let appDelegate = UIApplication.shared.delegate as? AppDelegate else {
return
}
let context = appDelegate.persistentContainer.viewContext
let request = NSFetchRequest<NSFetchRequestResult>(entityName: "Workout")

do {
let result = try context.fetch(request)
for index in result as! [Workout] {
print(index.value(forKey: "name") as! String)
print(index.value(forKey: "noOfSets") as! Int16)
/* This line throws error */
/* Cast from 'NSSet?' to unrelated
type '[Sets]' alwaysfails */
for ind in index.sets as! [Sets] {
print(ind.repAmount)
}
}
}
catch {
print("failed")
}
}

我不确定为什么index.sets是NSSet类型。生成的核心数据属性包括:

extension Workout {

@nonobjc public class func fetchRequest() -> NSFetchRequest<Workout> {
return NSFetchRequest<Workout>(entityName: "Workout")
}

@NSManaged public var name: String?
@NSManaged public var noOfSets: Int16
@NSManaged public var sets: NSSet?

}

// MARK: Generated accessors for sets
extension Workout {

@objc(addSetsObject:)
@NSManaged public func addToSets(_ value: Sets)

@objc(removeSetsObject:)
@NSManaged public func removeFromSets(_ value: Sets)

@objc(addSets:)
@NSManaged public func addToSets(_ values: NSSet)

@objc(removeSets:)
@NSManaged public func removeFromSets(_ values: NSSet)

}

我不确定为什么自动生成的核心数据属性包含 NSSet 类型。

有没有办法将 index.sets 转换为数组,以便我可以访问属于上一个 for 循环中指定锻炼的各个设置值(结果中的索引)?

最佳答案

I'm unsure of why index.sets is of type NSSet

因为这就是一对多关系所提供的。这是非常有效和强大的。别担心,开心就好。

I cannot access their values unless I cast the fetch data to an array

我不明白为什么你“无法访问他们的值(value)观”。你有一套。它包含元素。这些就是值(value)观。

        /* This line throws error */
/* Cast from 'NSSet?' to unrelated
type '[Sets]' alwaysfails */
for ind in index.sets as! [Sets] {

您无法施放index.sets[Sets]因为事实并非如此。这是一个Set<Sets> .

        for ind in index.sets as! Set<Sets> {

(您可以强制 index.sets[Sets] ,但没有必要这样做。只需使用给定的 Set 即可。 Set 没有顺序,但您仍然可以循环通过它,从其元素中获取属性等。如果您需要对其进行排序,您可以将其作为数组进行排序,但鉴于您的模型,我认为没有任何必要。)

关于Swift - 为循环获取多个一对多值 - 转换为不相关的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53697881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com