Get a list of opened windows cocoa

前端 未结 4 1578
北海茫月
北海茫月 2021-01-05 12:31

I\'m new to Cocoa and I want to know how I can get a list of all open windows. I\'m not talking about running programs, since this would be an easy task. I want to list wind

4条回答
  •  误落风尘
    2021-01-05 13:10

    I have Preview running with 10 pdf opened, my program should be able to retrieve a list with all those pdf.

    Well, that's the hard part. You can get the windows via Accessibility, but Accessibility doesn't associate them with any kind of document object.

    AppleScript would work for some applications, but Preview isn't one of them. Indeed, most apps aren't.

    So, you can get a list of windows easily enough, but getting meaningful information about or from inside those windows ranges from tricky to impossible. Your best bet may be a combination of Accessibility, AppleScript, and bug reports for un-scriptable applications, and the knowledge that your app will not work on everything.

提交回复
热议问题