我有一个包含NSTableView
. 当一行被拖到表格外时(拖放在这里完全有效,这不是问题的重点)我将光标更改为 poofy-pointer,否则称为[NSCursor disappearingItemCursor]
:
- (void)draggingSession:(NSDraggingSession *)session movedToPoint:(NSPoint)screenPoint {
if (self.draggedRowCanBeDeleted) {
BOOL outside = !NSPointInRect(screenPoint, window.frame);
if (outside) {
[[NSCursor disappearingItemCursor] set];
} else {
[[NSCursor arrowCursor] set];
}
}
}
这是非常不可靠的,因为它有时有效,有时无效。它通常在第一次尝试时起作用,但在那之后就退出了。我似乎找不到我拖过的东西的模式,或者拖了多远等等......,只是它看起来很不稳定。我在这里做错了吗?如果没有,我可以做些什么来帮助诊断问题吗?
更新
我也尝试了push
/pop
路线,问题仍然存在。
- (void)draggingSession:(NSDraggingSession *)session movedToPoint:(NSPoint)screenPoint {
if (self.draggedRowCanBeDeleted) {
BOOL outside = !NSPointInRect(screenPoint, window.frame);
if (outside) {
if (!_showingPoof) {
_showingPoof = YES;
[[NSCursor disappearingItemCursor] push];
}
} else {
if (_showingPoof) {
_showingPoof = NO;
[[NSCursor disappearingItemCursor] pop];
// I have also tried: [NSCursor pop];
}
}
}
}
更新
我也尝试过使用该sourceOperationMaskForDraggingContext
方法来设置它。我可以确认在正确的时间调用了正确的部分,但是在走这条路线时光标永远不会改变。
- (NSDragOperation)draggingSession:(NSDraggingSession *)session sourceOperationMaskForDraggingContext:(NSDraggingContext)context {
if (self.draggedRowCanBeDeleted) {
switch(context) {
case NSDraggingContextOutsideApplication:
[[NSCursor disappearingItemCursor] set];
return NSDragOperationDelete;
break;
case NSDraggingContextWithinApplication:
[[NSCursor closedHandCursor] set];
return NSDragOperationMove;
default:
[[NSCursor arrowCursor] set];
return NSDragOperationNone;
}
}
return NSDragOperationNone;
}