0
votes
1answer
17 views

How to fix the width of the view displayed as a row in a NSTableView?

I have a view-based NSTableView. I have created a NSView to insert in this NSTableView as a row. In the xib defining the NSView, the latter has a width set to 280. When I add my NSView to my ...
0
votes
0answers
69 views

NSTableView willDisplayCell: not getting called

I'm developing a blogging client that needs to run on Tiger and above. To display comments, I used joar.com SubviewTableView. It allows NSViews in NSTableViews. There's a custom cell that handles ...
1
vote
0answers
144 views

Using Cocoa Auto-Layout inside a view based NSTableView

My goal is to create a table view that shows short, but variable length and multi-line, messages with a picture (like a list of tweets for example). I have decided to try using Auto-Layout for the ...
1
vote
1answer
55 views

Having Draggable NSTabViewItem

is it possible to provide draggable NSTabViewItem, Basically what i want, if i down L Button on the label of NSTabViewITem and Move, i should allow to drag the TabView item, I want to do it for ...
1
vote
1answer
89 views

cocoa NSTableView in CustomView in SplitView size don't adjust

I have a NSSplitView as my "Superview". In this SplitView is a Custom View with a NSTableView. I'm try to load my Custom View from a Controller class and then adjust the size of the custom view and ...
0
votes
2answers
542 views

Cocoa NSView in NSTableView Cell

I'm new to cocoa and I'm getting frustrated, I've spent almost half the day trying to find out how to add an NSView to a NSTableView cell, but I haven't found a nice guide that can help me do what I ...
0
votes
1answer
211 views

NSViewController for each row in View-Based NSTableView?

Usual good practice in Cocoa dictates that each NSView should have its own NSViewController as its owner. Should this apply to each row of a View-Based NSTableView and, if so, what's a good strategy ...
0
votes
0answers
30 views

Switching view not correctly

My Cocoa app has two views: view A and tableView B. Both has the same frame, and hence I has a button to switch between them. It has a simple logic and I just use -[NSView setHidden:] to do it. ...
1
vote
1answer
44 views

How to use Two NSOutlineview in one view?

How to use Two NSOutlineview in one view ? if i am using rowAtpoint() method in one NSoutlineview i m getting proper result, but on another NSoutlineview which is in same view not giving proper ...
0
votes
2answers
517 views

Adding NSTableView to NSView Programmatically

I am having a bit of trouble adding a NSTableView to an NSView through code. The view Is the first view of an NSSplitView. My Pointers are set up right im sure of it because I can add a NSButton to ...
0
votes
1answer
136 views

Can't CTRL+Drag NSButton to custom NSView header

I'd like to create a custom NSTableCellView instantiated by Interface Builder. I've set my Table Cell View class to MyTableCellView, and properly created MyTableCellView : NSTableCellView .m/.h files. ...
2
votes
1answer
1k views

View-based NSTableView / NSOutlineView and isGroupItem

I have a View-based NSOutlineView bound to a NSTreeController. Everything seems to work correctly until I implement the outlineView:isGroupItem: method in my delegate, then the group header suddenly ...
2
votes
1answer
384 views

NSTableView drag cell to NSView

Could someone nudge me in the right direction on this. I want to drag a NSString from a table cell to a NSView and then do something based on that string but the drag and drop stuff has my head ...
0
votes
2answers
162 views

Holding NSView instances in an array

Is it possible to store an NSView object in a mutable array? As I understand it, the view will be an object so the array should be able to hold it. Specifically, I want to hold several instances of a ...
3
votes
1answer
162 views

Is there an intelligent way to handle view swapping/reusing in an NSScrollView?

Background: I'm building a view-based NSTableView-esque control in Cocoa/Objective-C that offers the ease of use of a UITableView in terms of being able to layout a view in Interface Builder, rather ...
5
votes
3answers
3k views

How to add a blurred view ontop of a view?

I have an NSTableView that gets reloaded. While new data is loading, I want to add a subview ontop of it with a spinner. I would like the view ontop to be semi-transparent and reveal the view beneath ...
0
votes
1answer
221 views

How can I determine if the mouse is over a specific view in NSTableView?

I have an NSTableView that is displaying different views for each cell. How can I determine that my mouse is over a specific view? I want to be able to hide/show certain UI pieces depending on the ...
1
vote
1answer
1k views

Rounded corners on NSTableView

I have a custom view subclass similar to NSBox that draws a rounded box background. The problem is that if I place a view like an NSTableView in the box view, it does not clip to the rounded corners. ...
0
votes
0answers
378 views

Deselecting NSTableView when clicked somewhere outside the table

I have a NSTableView placed on top of NSView. I want to deselect the NSTableView when mouse pointer is clicked on NSView. How to achieve this?
2
votes
1answer
1k views

Automatic NSView resizing

I'm doing something with cocoa which I think is a bit complicate for a beginner like me. I tried a few things, but I admit I need some theory first, because I would like to understand exactly the ...
0
votes
1answer
496 views

NSTableView and NSSearchField in an NSView, which is the outlet of an NSMenuItem, don't work

I'm having an NSView, which is set as the view: outlet of an NSMenuItem. The view contains an NSTableView (inside an NSScrollView) and an NSSearchField. The NSMenu is shown when the user clicks a ...
0
votes
1answer
431 views

How do I check if a NSView is being displayed at the moment?

I got an application which has a NSToolbar in its main window. Depending on which icon is clicked a NSView is displayed in this window. My problem is, that one of these views shows data in a ...