Skip to content

Instantly share code, notes, and snippets.

@skahack
Created August 18, 2011 11:44
Show Gist options
  • Save skahack/1153914 to your computer and use it in GitHub Desktop.
Save skahack/1153914 to your computer and use it in GitHub Desktop.
NSViewの座標系変換
// self = NSView
//NSRect rect;
// 画面左下が起点の座標系に変換
rect = [self convertRectToBase:rect];
// スクリーン座標系に変換
rect.origin = [[self window] convertBaseToScreen:rect.origin];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment