Tagged Questions
0
votes
1answer
234 views
Promising files from my view-based NSTableView
I'm writing a Mac app with a view-based table view. It's a list of images, which I intend for the user to be able to drag to the Finder to save each image to a file.
The data source owns an array of ...
0
votes
0answers
45 views
Moving window when view-based NSTableView is dragged?
I have an NSTableCellView inside a view-based NSTableView. I would like dragging inside a blank area inside the cell view to also move the window. Also when the table view is placed inside an ...
1
vote
1answer
156 views
view-based NSBrowser?
Now that we have NSTableView and NSOutlineView that can have regular NSView objects as their cells, what about NSBrowser? That is can we use regular NSView objects as cells in NSBrowser?
1
vote
1answer
843 views
Correctly resizing rows on view-based NSTableView
A view-based NSTableView with rows that have dynamic heights doesn't resize its rows when the table view size is changed. This is a problem when the row height is derived from the table view's width ...
0
votes
0answers
163 views
NSTableView weird scrolling behavior in Mountain Lion
I have an app with a source list. In Lion, it works wonderfully. In Mountain Lion, it works fine, but there's an unwanted side effect. Whenever the selected row changes in the source list, Mountain ...
0
votes
1answer
547 views
tableView:viewForTableColumn:row: not called
I am new to AppKit but not to UIKit.
I try to use an NSTableView and I want to populate programmatically.
So I implement
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
return ...
0
votes
2answers
199 views
Is Empty selection in an NSTableView with Source List Highlighting not allowed?
I feel like I may be missing something obvious here, but if I have an NSTableView with it's Highlight set to Source List and with Empty selection enabled, I don't seem to be able to click on a blank ...
0
votes
0answers
151 views
View based tableview and animating
I recently switched to using a view based tableview as it greatly simplifies a lot of my code, loving it so far.
In the sample apps mentioned and demo'd in the session video of WWDC 2011, they have ...
0
votes
1answer
190 views
NSTableView drawRow issues
I want to implement a gradient alternating row style in my NSTableView subclass.
- (void)drawRow:(NSInteger)row clipRect:(NSRect)clipRect
{
[[NSColor redColor] set];
NSRectFill(clipRect);
...
0
votes
2answers
417 views
NSTableView: How do you update a displayed tooltip?
For my NSTableView, I have defined
-tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:
and this does return the string I want to display and the NSTableView does display that string as a ...
0
votes
1answer
211 views
Link scrolling of two tables
How can I link (synchronize) the scrolling of two NSTableViews (or their underlying NSScrollViews) in Cocoa AppKit?
I tried simply setting the scroller of one to the scroller of the other, but this ...
1
vote
2answers
239 views
How to know which NSTableView opened a Contextual Menu?
I have 5 NSTableView's instances that have the same contextual menu. When I get the message that the menu has been clicked I need to know which table sent it. I've checked the NSMenu documentation but ...
