Tagged Questions
0
votes
0answers
14 views
How to change width of frame and save right corner in the same place in Cocoa?
I've got NSView object loaded from XIB file. I added mouseDown:, mouseDragged: and mouseDown:. It's red box on the screen. What i want is to change it's width, but with save it's right corner position ...
0
votes
1answer
45 views
How to Resize a window based on size of customView in COCOA (OS X)?
I am very new to Apple applications development, I make any mistakes in asking these question try to forgive me.
Actually I am having a Window of size 350 X 470, in these window I am having one ...
1
vote
1answer
95 views
Adding a NSTextView subview to NSTabViewItem
OK, I admit I've never been that good with programmatically manipulating NSView and its resizing. So, here I am :
We've got a Tab View
We're adding a new NSTabViewItem
Each NSTabViewItem will ...
0
votes
1answer
88 views
Resizing nspopover
I am trying to resize an NSPopover prior to displaying it by setting the frame of the NSView it contains using the method:
setFrameSize:
However, when I try to display the popover by calling:
...
0
votes
2answers
207 views
NSView OverLaying NSWindow Bottom Bar
For the life of me I cannot figure this out. I am working Xcode for Mountain Lion. I am having trouble adding NSView to an NSSplit View in my main NSWindow. My split view works as expected although ...
2
votes
0answers
322 views
Resize custom NSView inside NSScrollView by setFrameSize triggers drawRect
So I have this simple custom NSView-inside-NSScrollView setup, constructed in awakeFromNib programmatically, exactly like in Apple's ScrollView Programming guide.
The custom view (documentView of ...
1
vote
0answers
260 views
Resizing NSWindows and fixed ratios in Mac OS X
I was looking into making a window that has a fixed ratio when the user resizes the NSWindow element in Mac OS X.
I originally tried:
- (NSSize)windowWillResize:(NSWindow *)sender ...
-1
votes
1answer
220 views
How to toggle visibility of NSView + Resize sibling view
We have a parent Main view (NSView), and two children views, Content and StatusBar (one above the other; both simple NSViews).
What would be the optimal Cocoa-friendly way to toggle the StatusBar ...
1
vote
1answer
89 views
Properly push NSViews
I had a great system (It worked but was probably not the correct way to accomplish the task) going to animating one NSView over another. The user clicked a button and an NSView flew in over the other ...
0
votes
2answers
970 views
Resize parent view if subview changes size
I'm new to Cocoa and I'm programming a custom InspectorView.
A parent view (InspectorView) contains several subviews (InspectorCategories).
If I uncollapse a category (subview) I have to ...
1
vote
1answer
284 views
Programmatically resizing and Scrolling NSView after application launch
I want to create a simple application which performs some calculations and then draws some images on view. I use NSBezierPath. Then I must resize the view and allow people scroll the finished picture. ...
2
votes
1answer
2k views
Programatically resize NSView
I have a main view that is supposed to display several subviews. Those subviews are directly above and below one another (in the z axis) and will drop down (in the y axis) and move up using this code:
...
1
vote
1answer
616 views
Cocoa moving overlapping NSViews
I have several views inside one main view. Those views are all behind one another so that only the top one is currently seen. What I would like to do is, upon some particular user input, have one of ...
0
votes
2answers
403 views
Cocoa - Programmatically stretching an NSView vertically, moving everything after it down
I have three NSViews stacked on each other, and I want to be able to programmatically resize the middle one to stretch it vertically, moving the bottom one down by the same amount that the middle one ...
2
votes
1answer
1k views
NSSplitView subview size programmatically constrained to container NSSplitView's size
It is hard to put this problem into words, but a real world example will help. If you look at the iTunes app, it appears to have a NSSplitView for the Sidebar | Content split, and a nested NSSplitView ...
3
votes
1answer
978 views
cocoa — getting nested NSViews and CALayers to resize proportionally
My NSWindow's contentView is an NSView subclass. It has some other NSView subclasses as subviews. The subviews are layer-based, and those layers in turn contain sublayers. Some of the sublayers ...
3
votes
1answer
970 views
Cocoa: Does there exist an NSView with user resize capability?
I want an NSView that can be resized by dragging its the bottom right corner around, just like an NSWindow. I want to be able to embed this NSView into a parent NSView. Is there a component like this ...
1
vote
0answers
369 views
how to stop NSScrollView from scrolling on resize?
I'm writing a PDFViewer for a 3rd party PDF library. I have a subclass of NSScrollView and a subclass of NSView. The problem is the NSScrollView will scroll up and down when I resize window.
here is ...

