//鼠标左键按下
- (void)mouseDown:(NSEvent *)event{
//获取鼠标点击位置坐标:先获取event发生的window中的坐标,在转换成view视图坐标系的坐标。
NSPoint eventLocation = [event locationInWindow];
NSPoint center = [self.window.contentView convertPoint:eventLocation fromView:nil];
if (!CGRectContainsPoint(CGRectMake(34, 217, 372, 124), center)) {
//如果这个点在这个rect中就。。。
}
}