How to cast from CFTypeRef to AXUIElement in Swift

This code prints the expected debug output type = AXUIElement

, but removes the stack and says the dynamic push failed at the actual cast point:

func mainWindow() {
    var ptr: Unmanaged<AnyObject>?
    let kAXMainWindow: CFString! = "AXMainWindow" as NSString
    let appRef: AXUIElement! = AXUIElementCreateApplication(self.pid()).takeRetainedValue()

    let err = AXUIElementCopyAttributeValue(appRef, kAXMainWindow, &ptr)
    if err == AXError(kAXErrorSuccess) {
        let val: AnyObject? = ptr?.takeRetainedValue()
        if val != nil {
            let value: AnyObject = val!
            let description = CFCopyTypeIDDescription(CFGetTypeID(value))
            println("type = \(description)")
            let element = value as AXUIElement
        }
        else {
            println("got nil result")
        }
    }
}

      

What's the correct way to do this?

+3


source to share


1 answer


This code worked with XCode 6.1 and Swift 1.1.

However, after 3 years, and Swift is much better. However, this is still the main result when looking for how to work with Swift's Accessibility API. So I go back to updating with the simplest way I know:



func AXUIWindowArray(processIdentifier pid:pid_t) -> [AXUIElement] {
    var result = [AXUIElement]()
    var windowList: AnyObject? = nil // [AXUIElement]

    let appRef = AXUIElementCreateApplication(pid)
    if AXUIElementCopyAttributeValue(appRef, "AXWindows" as CFString, &windowList) == .success {
        result = windowList as! [AXUIElement]
    }
    return result
}

      

+3


source







All Articles