Search code examples
objective-cmacoscocoansworkspace

Is there a way to reduce the size of the window launched by NSWorkSpace?


I use this line to open a url in browser.

[[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:url]];

I want to reduce the size of the window created by NSWorkspace.Is it possible programatically?


Solution

  • NSWorkspace does not provide any api to resize the window. But if you are using webview and loading the request inside that then you can resize that webview window.