0

我有以下代码:

if (conditions) {
    [NSCursor pop];
    [[NSCursor closedHandCursor] push];
}

因此,如果 if 循环中的条件为真,我的光标将变为 closedHandCursor。现在我想用图像来改变它。我该怎么做呢?

4

1 回答 1

1

使用以下初始化程序来初始化 NSCursor:

- (id)initWithImage:(NSImage *)newImage hotSpot:(NSPoint)aPoint

出现在 NSCursor 课程中,如果有帮助,请告诉我...

于 2012-09-11T09:38:17.117 回答