gpt4 book ai didi

ios - Swift 中的自定义类归档

转载 作者:搜寻专家 更新时间:2023-11-01 05:59:08 25 4
gpt4 key购买 nike

我想快速归档和取消归档自定义对象,如下所示:

class Line : NSObject, NSCoding  {

var start : CGPoint


init(start _start: CGPoint) {
start = _start
}

required init(coder aDecoder: NSCoder) {
// 1 - compile time error
self.start = aDecoder.decodeObjectForKey("start") as CGPoint
}

override init() {
}

func encodeWithCoder(aCoder: NSCoder) {
// 2 - compile time error
aCoder.encodeObject(start, forKey: "start")
}
}

1.编译时报错是:类型“CGPoint”不符合协议(protocol)“AnyObject”

2.编译时错误为:调用中的额外参数“forKey”

如何归档和取消归档 CGPoint,我知道 CGPoint 被击中了,这就是问题所在,但如何解决呢?

提前致谢。

最佳答案

您可以使用以下方式归档/取消归档 CGPoint:

encodeCGPoint:forKey:

decodeCGPointForKey:

更多信息在这里:https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSCoder_Class/index.html#//apple_ref/occ/instm/NSCoder/encodeCGPoint:forKey:

关于ios - Swift 中的自定义类归档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28295742/

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