如何使用NSCursor显示自定义光标

时间:2011-09-30 09:56:19

标签: macos cocoa appkit nscursor

我正在尝试使用nscursor在我的游戏中使用自定义光标。我使用以下代码


//While initializing openglview 
    mCustomCursor = [[NSCursor alloc] initWithImage:image hotSpot:NSZeroPoint];
    [image release];
[mCustomCursor set]

我在resetcursorrect方法中设置了光标rect


- (void)resetCursorRects
{

    [self  addCursorRect:currentViewPortRect cursor:[NSCursor currentCursor]];

}

出现自定义光标,它不一致,有时会切换回系统光标(用于警报),有时会返回,有时则不会。这太令人困惑了。我不确定是否应该使用'setOnMouseEntered','pop'。使用nscursor并动态更改它的标准方法是什么。

1 个答案:

答案 0 :(得分:1)

您正在将光标更改为当前光标,而根本不会更改它。要显示自己的自定义光标,必须在创建光标rect时传递自定义光标。