How can I set the window size programmatically? I have a window in IB and I want to set the size of it in my code to make it larger.
Use setFrame:display:animate:
[window setFrame:NSMakeRect(0.f, 0.f, 200.f, 200.f) display:YES animate:YES];