如何在Swift IOS中使用NSKeyedArchiver保存具有子类的对象

问题描述 投票:-1回答:1

我只是在Swift中尝试编码,我正在尝试修改Apple Dev Library re:Meals中的现有项目。

我希望在主要的Meal类中添加一些额外的子类,例如Ingredients,将其作为一个或多个成分。

import UIKit
import os.log

class Meal: NSObject, NSCoding {

    //MARK: Properties

    var name: String
    var photo: UIImage?
    var rating: Int
    var recipe: [ingredients]?

    //MARK: Archiving Paths
    static let DocumentsDirectory = FileManager().urls(for: .documentDirectory, in: .userDomainMask).first!
    static let ArchiveURL = DocumentsDirectory.appendingPathComponent("meals")

    //MARK: Types

    struct PropertyKey {
        static let name = "name"
        static let photo = "photo"
        static let rating = "rating"
        static let recipe = "recipe"
    }

    //MARK: Initialization

    init?(name: String, photo: UIImage?, rating: Int, recipe: ingredients!) {

        // The name must not be empty
        guard !name.isEmpty else {
            return nil
        }

        // The rating must be between 0 and 5 inclusively
        guard (rating >= 0) && (rating <= 5) else {
            return nil
        }

        // Initialization should fail if there is no name or if the rating is negative.
        if name.isEmpty || rating < 0  {
            return nil
        }

        // Initialize stored properties.
        self.name = name
        self.photo = photo
        self.rating = rating
        self.recipe = recipe
    }

    //MARK: NSCoding

    func encode(with aCoder: NSCoder) {
        aCoder.encode(name, forKey: PropertyKey.name)
        aCoder.encode(photo, forKey: PropertyKey.photo)
        aCoder.encode(rating, forKey: PropertyKey.rating)
        aCoder.encode(recipe, forKey: PropertyKey.recipe)
    }

    required convenience init?(coder aDecoder: NSCoder) {

        // The name is required. If we cannot decode a name string, the initializer should fail.
        guard let name = aDecoder.decodeObject(forKey: PropertyKey.name) as? String else {
            os_log("Unable to decode the name for a Meal object.", log: OSLog.default, type: .debug)
            return nil
        }

        // Because photo is an optional property of Meal, just use conditional cast.
        let photo = aDecoder.decodeObject(forKey: PropertyKey.photo) as? UIImage

        let rating = aDecoder.decodeInteger(forKey: PropertyKey.rating)

        let recipe = aDecoder.decodeObject(forKey: PropertyKey.recipe)

        // Must call designated initializer.
        self.init(name: name, photo: photo, rating: rating, recipe: recipe)

    }
}

保存和加载膳食项目的函数调用如下:

   private func saveMeals() {
        let isSuccessfulSave = NSKeyedArchiver.archiveRootObject(meals, toFile: Meal.ArchiveURL.path)
        if isSuccessfulSave {
            os_log("Meals successfully saved.", log: OSLog.default, type: .debug)
        } else {
            os_log("Failed to save meals...", log: OSLog.default, type: .error)
        }
    }

    private func loadMeals() -> [Meal]?  {
        return NSKeyedUnarchiver.unarchiveObject(withFile: Meal.ArchiveURL.path) as? [Meal]
    }

我宣布了一个新的Class Ingredients.swift来捕捉我想要的成分。

import UIKit
import os.log

class Ingredients: NSObject {

    struct PropertyKey {
        static let name = "name"
        static let  quantity = "quantity"
    }

    var name: String!
    var quantity: Double!

    //MARK: Initialization

    init?(name: Int, quantity: Double) {

        self.name = name
        self.quantity = quantity
    }
}

我现在遇到的问题是,由于未捕获的异常,XCode正在抛出“终止应用程序”

'NSInvalidArgumentException',原因:' - [MealTracker.Ingredients encodeWithCoder:]:无法识别的选择器发送到实例0x1c40a0e40'“

我可以知道如何成功地将Ingredients数组包含在已保存的对象中吗?

ios iphone swift database nskeyedarchiver
1个回答
0
投票

你必须实现NSCoding协议

func encode(with aCoder: NSCoder) {}
required convenience init?(coder aDecoder: NSCoder) {}

里面的内部自定义类也

class Ingredients: NSObject , NSCoding {}
© www.soinside.com 2019 - 2024. All rights reserved.