views:

149

answers:

1

I have a window that contains one QTMovieView. How do I make it so that resizing of the window will keep the window's aspect ratio the same?

+3  A: 
[window setContentAspectRatio:NSMakeSize(width, height)]

More info: Apple's documentation, NSWindow class reference

htw