I know you can set properties of Foundation classes using setValue(value, forKey: key)
but how can you check if a class has a value for a key?
Check if class has a value for a key
2.6k Views Asked by AudioBubble At
2
There are 2 best solutions below
2

Swift3 version of the Raymond's response
extension NSObject {
func safeValue(forKey key: String) -> Any? {
let copy = Mirror(reflecting: self)
for child in copy.children.makeIterator() {
if let label = child.label, label == key {
return child.value
}
}
return nil
}
}
class A:NSObject {
var name: String = "Awesome"
}
var a = A()
a.safeValue(forKey: "name") // "Awesome"
a.safeValue(forKey: "b")
This is annoying problem. In the following code snippet I use reflection to check whether a call to valueForObject is safe. It might have a huge performance penalty ...
The solution was inspired by this blog post