I need to get the center point of a NSView in the form of a CGPoint, how can I achieve this? I am basically looking for the equivalent of the UIKit, UIView.center
This code will get you that CGPoint:
CGPointMake((myView.frame.origin.x + (myView.frame.size.width / 2)), (myView.frame.origin.y + (myView.frame.size.height / 2)))