swift – 如何调用validateValue方法

swift – 如何调用validateValue方法,第1张

概述我正在尝试制作通用的NSCoding实现,并且由于更新版本的应用程序,当对象的类型在平均时间内发生变化时会出现解码问题. 我从Swift调用validateValue方法时遇到问题.功能签名是: func validateValue(_ ioValue: AutoreleasingUnsafeMutablePointer<AnyObject?>, forKey key: String, error 我正在尝试制作通用的NSCoding实现,并且由于更新版本的应用程序,当对象的类型在平均时间内发生变化时会出现解码问题.

我从Swift调用valIDateValue方法时遇到问题.功能签名是:

func valIDateValue(_ iovalue: autoreleasingUnsafeMutablePointer<AnyObject?>,forKey key: String,error outError: NSErrorPointer) -> Bool

作为参考,可以在此处找到Apple文档:NSCoding validateValue

我想要创建的代码是:

public class func decodeObjectWithCoder(theObject:NSObject,aDecoder: NSCoder) {        for (key,value) in toDictionary(theObject) {            if aDecoder.containsValueForKey(key) {                let newValue: AnyObject? = aDecoder.decodeObjectForKey(key)                NSLog("set key \(key) with value \(newValue)")                var error:NSError?                var y:Bool = theObject.valIDateValue(newValue,forKey: key,error: &error)                if y {                    theObject.setValue(newValue,forKey: key)                }            }        }    }

我无法正确调用.valIDateValue.我不断收到编译错误.我该怎么称呼它.
toDictionary函数可在以下位置找到:EVReflection

更新:我刚刚发现这段代码编译:

var iovalue: autoreleasingUnsafeMutablePointer<AnyObject?> = nil        var y:Bool = theObject.valIDateValue(iovalue,error: nil)

这意味着AnyObject类型的值?无法转换为autoreleasingUnsafeMutablePointer

解决方法 必须通过添加&来将newValue字段作为指针传递.在它面前.除此之外,你必须使用var而不是let.所以最终的代码是:

public class func decodeObjectWithCoder(theObject:NSObject,aDecoder: NSCoder) {    for (key,value) in toDictionary(theObject) {        if aDecoder.containsValueForKey(key) {            var newValue: AnyObject? = aDecoder.decodeObjectForKey(key)            if theObject.valIDateValue(&newValue,error: nil) {                theObject.setValue(newValue,forKey: key)            }        }    }}
总结

以上是内存溢出为你收集整理的swift – 如何调用validateValue方法全部内容,希望文章能够帮你解决swift – 如何调用validateValue方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1015691.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存