gpt4 book ai didi

swift - 如何将核心数据加载到结构中

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

我想将核心数据加载到 struct CusomData 中。属性 atBATS 应加载到 var title 中。属性图像应加载到 var backgroundIMage 中。我有我的结构以及在 View Controller 中调用它的位置。

      struct CustomData {
var title: String
var backgroundImage: UIImage
}


class ViewController: UIViewController {

fileprivate let data = [
CustomData(title: "The Islands!", backgroundImage: #imageLiteral(resourceName: "islandZero")),
CustomData(title: "Subscribe to maxcodes boiiii!", backgroundImage: #imageLiteral(resourceName: "islandThree")),
CustomData(title: "StoreKit Course!", backgroundImage: #imageLiteral(resourceName: "islandZero")),

]
}

最佳答案

您需要将 CustomData 设为具有 titlebackgroundImage 属性的 NSManagedObject。 Core Data 仅适用于继承自 NSManagedObject 的对象。

关于swift - 如何将核心数据加载到结构中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58193614/

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