Hello I was wondering if anyone knew of a method or way that you stop the user resizing your window for a Cocoa / Mac OS X application.
If this is not not possible how would you go about resizing the window uniformally.
Hello I was wondering if anyone knew of a method or way that you stop the user resizing your window for a Cocoa / Mac OS X application.
If this is not not possible how would you go about resizing the window uniformally.
Set the min and max sizes to the desired size.
CGSize fixedSize = myWindow.frame.size;
[myWindow setMinSize:fixedSize];
[myWindow setMaxSize:fixedSize];