I get an Ambiguous use of 'children'
error in XCode 8.0/Swift 3.0 when trying to send a message to the opaque NSTreeController.arrangedObjects
object.
Here is a bare playground showing the use case :
import AppKit
extension NSTreeController {
func whatever () {
let k = (self.arrangedObjects as AnyObject).children // error here
}
}
I try to use AnyObject
as a bridge to the underlying ObjC object, which is supposed to be able to get through any method call, I guess.
Xcode signals that it found two candidates that could respond to a "children" message: Foundation.XMLNode
and AppKit.NSTreeNode
.
Of course the obvious solution (casting to NSTreeNode
) is not working because arrangedObjects
returns an opaque, proxy object not a real NSTreeNode
Any suggestion on how we're supposed to use NSTreeController.arrangedObjects.children
in Swift 3 ?