Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
903 views

How to expand and collapse NSSplitView subviews with animation?

Is it possible to animate the collapsing and expanding of NSSplitView subviews? (I am aware of the availability of alternative classes, but would prefer using NSSplitView over having animations.) I ...
4
votes
1answer
648 views

Programmatically resizing NSSplitView

I used to use and love RBSplitView, however I failed at reimplementing it programmatically as a certain version of xcode does not support IB plugins anymore. Therefore I went back to using ...
3
votes
1answer
415 views

Automatically resizing subview created programmatically

I have a NSSplitView. On the left pane of that split view I have an NSTableView and a custom view created programmatically. I'm using a delegate to make sure my two panes don't resize at the same ...
3
votes
1answer
514 views

Make the divider of an NSSplitView undraggable and don't show the dragging cursor

I have an NSSplitView (NO UISplitView(Controller)!!) with three subviews. Now, for the last divider (index 1), I want the divider to not show the dragging cursor (two arrows pointing out of ...
2
votes
1answer
654 views

Create NSSplitView + subview programmatically

I am trying to create a horizontal NSSplitView programmatically and to add it 2 subviews. Unfortunately, if I have no issue to create the splitview, I do not know how to add the subview. Do you have ...
2
votes
1answer
594 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 ...
2
votes
1answer
1k views

How to disable resizing of the subview of NSSplitView in Interface Builder?

I've created in Interface Builder a NSSplitView with two subviews. I want the left-side view to have fixed width. I've tried to define autosizing rules for both subviews but the left subview still ...
2
votes
1answer
350 views

NSSplitView splitter pane change notification

Hello I need to implement four views splitters like in Maya, 3ds max, Blender or other similar modeling tools. I use NSSplitView on Mac side of my editor and I need to know when user drags one pane to ...
1
vote
1answer
118 views

Widening NSWindow when NSSplitView subview is expanded/uncollapsed to make room

I have an NSSplitView with two subviews. My goal is to have each subview restricted to a minimum width but have the window's minimum width depend on which of the subviews is visible. So for example, ...
1
vote
1answer
161 views

Setting view in NSSplitView not working

Please excuse my ignorance, I'm coming from iOS to Mac programming. I have two nibs. One is the main window with the split view. The nib contains a navigationController view I created. I'm trying to ...
1
vote
2answers
271 views

No MouseUp:/Down: on custom view in NSSplitView on Leopard

I am currently working on a project build for OSX 10.5 and up. First of all, the 10.6 users do not see this; only 10.5 users have this issue. You are not able to reproduce this on 10.6. In short: ...
1
vote
1answer
200 views

Delegate methods not invoked for nssplitview present on top of another nssplitview

I have a horizontal NSSplitView which sits on top of right sub view of another vertical NSSplitView. I have delegate methods to constraint the left sub view from resizing. But the same delegate ...
1
vote
1answer
283 views

Get the number of dividers in an NSSplitView

I suspect that the number of dividers in an NSSplitView is equal to [[MySplitViewObject subviews] count] -1 and that the index of any given divider in an NSSplitView is equal to the index of the ...
1
vote
2answers
748 views

Setting one side of an NSSplitView programmatically

I've got an NSSplitView and on the left side I've got a tableView (like a source list) and depending on row selection, I want to change the the right side of the split view. I can't quite figure out ...
1
vote
3answers
625 views

How do I fix the height of my view after collapsing NSSplitView?

I've got an NSSplitView with an NSScrollView in the bottom view. The problem is when I collapse, and then re-open (un-collapse) the bottom view, the height of the scroll view is beyond the height of ...
1
vote
4answers
3k views

How to expand and collapse parts of NSSplitView programatically?

I want to replace RBSplitView with NSSplitView in my existing project. The application is now leopard only and I would like to replace RBSplitView with the new NSSplitView shipped with Leopard. ...
0
votes
0answers
47 views

Interface Builder warning for NSSplitView divider style

I am using Xcode 4.2 to build a project that targets Mac OS X 10.4. Accordingly I have configured both my main target and my .xib file: The main target uses MACOSX_DEPLOYMENT_TARGET=10.4 The .xib ...
0
votes
0answers
26 views

Lost mouse over behavior on NSSplitView after file drop

I have an NSSplitView with the left pane as an NSScrollView and the right pane as an NSView that accepts file drops (draggingEntered, performDragOperation, etc). After a file is dropped or even ...
0
votes
1answer
143 views

Replacing a NSSplitView subview with Core Animation

I'm trying to figure out how to animate switching (replacing) subviews in a vertically-configured, 2-view NSSplitView. I've got it semi-working using the following methods in my NSSplitView subclass: ...
0
votes
1answer
172 views

Strange behavior on splitView:(NSSplitView *)splitView resizeSubviewsWithOldSize:(NSSize)oldSize in os x Lion

I'm building an application with two split views (one split view in side right split view) But i'm having problems after upgrading to OS X Lion. The application crashes when you use the lower right ...
0
votes
1answer
59 views

how to do a split-view like application in iphone

Is there any way for implementing popovers and split-view in iphone application?.I saw a bible app OliveTree Bible reader,In this app they use the pop overs like feature and split-view like view ...
0
votes
1answer
183 views

How to add custom views to the NSSplitView divider

What is the preferred approach to add custom views to the divider of a NSSplitView? Taken the divider XCode uses to separate the CodeView and the Debug-OutputView, how do i add custom controls / ...
0
votes
0answers
126 views

how to change NSSplitView subview width without causing textView to relayout text?

imagine a vertical NSSplitview with two subviews, each containing NSTextViews. i want to widen the right side, and have its textView respond with widened text lines, while the left side and its ...
0
votes
1answer
187 views

NSOutlineView badges in NSSplitView

I have an NSOutlineView which I draw badge numbers to the right side of cells using drawAtPoint:, NSAttributedString, and of course NSBezierPath. My problem exists when resizing of the outline view ...
0
votes
1answer
337 views

NSSplitView save and restore splitter position when switching between Vertical and Horizontal layout

In my app I use NSSplitView which has ability to switch between vertical and horizontal layout using - (void)setVertical:(BOOL)flag method. The problem is that when user change layout, splitter always ...
0
votes
1answer
226 views

NSSplitter how to prevent proportional space distribution on resize

I have a window with a source list sidebar at the right side and a content view on the left both inside an NSSplitView. When i resize the window, the additional space is distributed to the source ...
0
votes
1answer
484 views

How to remove a SubView from a NSSplitView in cocoa?

I'm loading two different views with this IBActions - (IBAction)showFirstView:(id)sender{ theDetailViewController = [DetailViewController new]; [theDetailViewController ...
0
votes
2answers
210 views

Incorrent NSTableView frame within an NSSplitView

Within my Mac app I've setup two NSSplitViews to create a Mail-style interface (with the first ScrollView used to create a vertical separator, and the second nested within the first, to create the ...
0
votes
1answer
390 views

How to hide a divider of nssplitview?

Now I want to hide or show with my condition a divider when my app run. used this delegate method: - (BOOL)splitView:(NSSplitView *)splitView shouldHideDividerAtIndex:(NSInteger)dividerIndex { if ...
0
votes
1answer
357 views

Reposition an NSBox in the top pane of a horizontal NSSplitView

I've worked for hours on this and I just can't get it - should be really basic stuff but it's not getting thru my thick skull. I think it has to do with the coordinate system in Cocoa but I really ...