You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this has a tracking area for entire window block configured by ->
_trackingArea = [[NSTrackingArea alloc] initWithRect:self.bounds options:NSTrackingCursorUpdate | NSTrackingMouseMoved | NSTrackingInVisibleRect | NSTrackingActiveInKeyWindow | NSTrackingMouseEnteredAndExited owner:self userInfo:nil];
[self addTrackingArea:_trackingArea];
which gets a callback when mouse goes on and off the screen
UIView doesn't have a addTrackingArea:_trackingArea - method.....
so an attempt to port this - is probably futile as used need to replicate the nsviews and the uitableview has a queue of cells and the problem would grow trying to duplicate the uiview stack to nsviews....
however - we do have point inside method in uikit.
and if we can track the current mouse position - along with pointInside - we may be able fudge it.
I'm going to take a look.
No description provided.
The text was updated successfully, but these errors were encountered: