加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

在Swift中将JSON字典导入Core数据

发布时间:2020-12-14 04:33:00 所属栏目:百科 来源:网络整理
导读:我在使用 Swift将JSON字典中的bool导入到下面的Exercises对象时遇到了一些麻烦.拉伸设备对象非常简单.我知道这很简单,但我找不到一个可以模拟的例子.这是我的数据模型: Stretch对象是我的主要实体. Equipment对象将包含字符串. 练习对象属性是Bools. let js
我在使用 Swift将JSON字典中的bool导入到下面的Exercises对象时遇到了一些麻烦.拉伸&设备对象非常简单.我知道这很简单,但我找不到一个可以模拟的例子.这是我的数据模型:

Stretch对象是我的主要实体.
Equipment对象将包含字符串.
练习对象属性是Bools.

let jsonURL = NSBundle.mainBundle().URLForResource("seed",withExtension: "json")!
    let jsonData = NSData(contentsOfURL: jsonURL)

    var error: NSError?
    let jsonArray = NSJSONSerialization.JSONObjectWithData(jsonData!,options: nil,error: &error) as NSArray

    // Inserts attributes for database

    let entity = NSEntityDescription.entityForName("Stretch",inManagedObjectContext: coreDataStack.context)!

    var counter = 0

    for jsonDictionary in jsonArray {

        counter++
        // listing of columns in JSON seed file
        let stretchDescription = jsonDictionary.valueForKey("stretchDescription") as String
        let generalArea = jsonDictionary.valueForKey("generalArea") as String
        let muscleGroup = jsonDictionary.valueForKey("muscleGroup") as String
        let equipmentCode = jsonDictionary.valueForKey("equipmentCode") as String
        let sideMultiplier = jsonDictionary.valueForKey("sideMultiplier") as NSNumber
        let advanced = jsonDictionary.valueForKey("advanced") as Bool
        let photo = jsonDictionary.valueForKey("photo") as NSData
        let runningOrWalking = jsonDictionary.valueForKey("runningOrWalking") as Bool
        let cycling = jsonDictionary.valueForKey("cycling") as Bool
        let weightLifting = jsonDictionary.valueForKey("weightLifting") as Bool
        let aerobics = jsonDictionary.valueForKey("aerobics") as Bool
        let raquetSports = jsonDictionary.valueForKey("raquestSports") as Bool
        let golf = jsonDictionary.valueForKey("golf") as Bool
        let yoga = jsonDictionary.valueForKey("yoga") as Bool
        let equipmentDescription = jsonDictionary.valueForKey("equipmentDescription") as String

        let stretch = Stretch(entity: entity,insertIntoManagedObjectContext:coreDataStack.context)

        stretch.stretchDescription = stretchDescription
        stretch.generalArea = generalArea
        stretch.muscleGroup = muscleGroup
        stretch.equipmentCode = equipmentCode
        stretch.sideMultiplier = sideMultiplier
        stretch.advanced = advanced
        stretch.photo = photo

        // Insert Equipment object
        let equipmentEntity = NSEntityDescription.entityForName("Equipment",inManagedObjectContext: coreDataStack.context)
        let equipmentDescriptionObject = Equipment(entity: equipmentEntity!,insertIntoManagedObjectContext: coreDataStack.context)

        stretch.equipmentUsed = equipmentDescriptionObject

        // Figure out exercises object
        let exercise = NSEntityDescription.entityForName("Exercises",inManagedObjectContext: coreDataStack.context)
        let exerciSEObject = Exercises(entity:exercise!,insertIntoManagedObjectContext: coreDataStack.context)

这就是我被困住的地方.我如何完成为Exercises对象添加属性?

解决方法

This is where I’m stuck. How would I finish up adding the attributes for the Exercises object?

与向Stretch对象添加属性的方式相同.您可以通过点表示法轻松访问和设置练习属性.

let exercise = NSEntityDescription.entityForName("Exercises",inManagedObjectContext: coreDataStack.context)
let exerciSEObject = Exercises(entity:exercise!,insertIntoManagedObjectContext: coreDataStack.context)
exerciSEObject.aerobics = aerobics

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读