Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコード(Xcodeドキュメントからコピー)を使用して、OS Xアプリのカーソルを変更しようとしています:
NSCursor* c = [NSCursor pointingHandCursor]; [c set];
効果がなく、ここで何が間違っているのかわかりません。どんなアイデアでも大歓迎です。
NSViewで試すことができます
- (void)resetCursorRects { [super resetCursorRects]; [self addCursorRect:[self bounds] cursor:[NSCursor pointingHandCursor]]; }
これは NSWIndow でも動作するはずですが、まだテストしていません