I need to call a method every time there is a visible change in the currently viewable system windows. For example, I'm getting the full visible window list with:
CFArrayRef openWindows =(CGWindowListCreate(kCGWindowListOptionOnScreenOnly | kCGWindowListExcludeDesktopElements, kCGNullWindowID));
This will return an array such as:
{
kCGWindowAlpha = 1;
kCGWindowBounds = {
Height = 713;
Width = 1279;
X = 1;
Y = 22;
};
kCGWindowIsOnscreen = 1;
kCGWindowLayer = 0;
kCGWindowMemoryUsage = 3772468;
kCGWindowName = "Stack Overflow";
kCGWindowNumber = 7138;
kCGWindowOwnerName = "Google Chrome";
kCGWindowOwnerPID = 49972;
kCGWindowSharingState = 1;
kCGWindowStoreType = 2;
}
Due to the kCGWindowMemoryUsage value constantly changing, I cannot simply compare a previously stored CFArrayRef with the current one.
CGWindowListCreateDescriptionFromArraythat you didn't show. Then, since you said you "cannot simply compare a previously stored CFArrayRef", I assumed you were callingCFEqual()on the arrays. What I meant was, just do your own implementation of CFEqual() which compares only certain entries in each dictionary -- it should actually be faster than CFEqual, since it's comparing fewer things. CFEqual probably compares every element of each dictionary by callingCFEqual(this string, that string). – Smilin Brian Feb 28 at 0:35