if (dictionary["Amoumt"] is Double) { amount = dictionary["Amount"] as Double} else { amount = Nsstring(string: dictionary["Amount"] as String).doubleValue}
我有Dictionary< String,AnyObject>我想解析它的价值.我正在使用上面的代码但它的行太多了.我想把它变成一条线.就像是:
dictionary["Amount"].parseDouble()
使用此方法创建扩展没有问题:
func parseDouble() -> Double { if (self is Double) { return self as Double } else { return Nsstring(string:(self as String)).doubleValue }}
但是我应该扩展哪种类型?接下来你能用通用方法帮我吗?所以我可以这样打电话:
dictionary["Amount"].parse(Double)
这是如何做到这一点的好方法还是我应该采取另一种方式?
解决方法 您可以按原样使用AnyObject.尝试:var dictionary:[String:AnyObject] = [ "foo": 4.21,// NSNumber "bar": "42.5",// Nsstring "baz": [1,2,3],// NSArray]let foo = dictionary["foo"]?.doubleValue ?? 0 // -> 4.21let bar = dictionary["bar"]?.doubleValue ?? 0 // -> 42.5let baz = dictionary["baz"]?.doubleValue ?? 0 // -> 0.0
这是有效的,因为NSNumber和Nsstring都具有.doubleValue属性.
另一方面,NSArray没有该属性,在这种情况下它返回nil.
如the document中所述:
总结You can also call any Objective-C method and access any property without casting to a more specific class type. This includes Objective-C compatible methods marked with the
@objc
attribute.
以上是内存溢出为你收集整理的Swift将字典值作为类型全部内容,希望文章能够帮你解决Swift将字典值作为类型所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)