Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我想知道是否有人知道您阻止用户为 Cocoa / Mac OS X 应用程序调整窗口大小的方法或方式。
如果这是不可能的,您将如何统一调整窗口大小。
Set the min and max sizes to the desired size.
CGSize fixedSize = myWindow.frame.size; [myWindow setMinSize:fixedSize]; [myWindow setMaxSize:fixedSize];