cocos2d에서 커스텀 커서를 사용하는 방법을 그냥 mac app에서 커스텀 커서를 사용하는 방법 처럼 하면 잘 안되길래.. http://www.cocos2d-iphone.org/forum/topic/12523 찾음. CCGLView.m 에 아래코드 추가. -(NSCursor*) getCustomCursor{ if (_cursor==nil){ NSString *pathToSettingsInBundle = [[NSBundle mainBundle] pathForResource:@"cursor_normal" ofType:@"png"]; NSImage *crsrImage = [[NSImage alloc] initWithContentsOfFile:pathToSettingsInBundle]; _cursor = [..