我从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方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)