Tagged Questions
0
votes
2answers
42 views
NSTableView error -[__NSCFConstantString setFrame:]
all. when I use NSTableView, it will give me the following errors as long as it reaches in this function.
-(id)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn ...
0
votes
1answer
90 views
Cocoa: NSTableView DataSource doesn't set title
I am trying to set text value of cell:
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
if ([[[tableColumn headerCell] ...
0
votes
1answer
45 views
CoreData Binding and custom Cell
I have an app with a CoreData Database and a NSTableView.
I want to do a customCell with 3 key values from database.
So I create an NSTextFieldCell Class but the binding is only for a key value.
How I ...
0
votes
0answers
151 views
NSTableView tableViewColumnDidResize has incorrect frame size for NSTableCellView
Why does tableViewColumnDidResize get called twice on each resize event and why does the second call report incorrect frame sizes?
I'm trying to use a single-column, view-based NSTableView where each ...
0
votes
0answers
130 views
Adding columns to an NSTableView
I'm attempting to add columns dynamically to an NSTableView but they don't display anything:
NSTableColumn *col = [[NSTableColumn alloc] initWithIdentifier:@"test"];
[[col headerCell] ...
0
votes
0answers
71 views
How to sum NSTableView columns
I have a NSTableView and I need to get the sum of some columns. I have found the following method and it works:
[totaleCantiere bind:@"value" toObject:arrayController1_
...
0
votes
2answers
242 views
NSArrayController populates NSTableView but doesn't set the cell title
I have a two column NSTableView that I want to populate with entries grabbed from a CSV file. Everything works fine except the title of each of the table cells isn't set.
Here's the function that is ...
0
votes
0answers
96 views
Programatically NSTableview, with dynamic NSTableColumns
I have a NSTableView with some dynamic columns showing some figures for a given day, the table would be something like this, being the columns Company and Account filled via bindings with an ...
0
votes
2answers
519 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
185 views
How to display sort indicator in the table header?
I sorted the NSTableColumn using the sort descriptors. I used the following code for Sorting.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"Column3" ascending:NO];
...
1
vote
0answers
297 views
How to right set height of NSTableCellView with NSTextField?
Greets!
I have a View-based NSTableView with Custom View as a cell (NSTableCellView class).
There is NSTextField inside custom cell.
I need to display 3 lines of text inside NSTextField and after ...
0
votes
2answers
183 views
Getting a column in an NSTableView with editable column order
I have an NSTableView where I would like to be notified if the user clicks in a column "ClickMe". I linked the entire table view to a method which can extract the clickedColumn:, but I get an absolute ...
1
vote
1answer
98 views
NSTableColumn animation
I want to make a table view with dynamic columns.
Similar to the one in Ecoute
I just need one column to be visible at a time. As soon as it is double clicked, the whole table view (not scroll view) ...
0
votes
1answer
216 views
Removing a column and its header from an NSTableView
NOTE: Andrew's response caused me to take yet another look. This feature is buried deep in a large application which has in internal timer. If that timer is off I get the wrong behavior described ...
1
vote
1answer
529 views
About the automatic table column identifier
I have create a NSTableView and 2 NSTableColumn in the view. Both of the identifiers of these 2 NSTableColumn set to "Automatic" in Interface Builder.
In the method:
(NSView *)tableView:(NSTableView ...
0
votes
1answer
223 views
Getting object info in willDisplayCell when NSTableView is using bindings
I have a table that's using bindings to get table data. I'm also using willDisplayCell to customize the specific cell when it's being displayed. My question is, how do I get the value of the cell ...
3
votes
1answer
278 views
Autosave of programmatically created NSTableColumn in NSTableView?
I have an NSTableView created in Interface Builder with some columns. I've set the tableview to autosave its settings (I set the autosave name in the Attributes Inspector and checked Column ...
2
votes
2answers
865 views
NSTableView selectable but not editable
Trying to get an NSTableView in IB to be selectable but not editable. But de-selecting "Editable" for a column also removes the selecting capability.
Can someone tell me where I should insert this ...
1
vote
1answer
88 views
Limiting the text length in a cell in NSTableView column
I have a NSTableView with 2 columns. I do have code to enter text in the cells for each row.
Is there a way to limit the number of characters entry in the cell say max upto 10?
0
votes
3answers
642 views
How to set second column text of NSTableView?
I've encountered a problem while creating an NSTableView with 2 columns.
How do you set the value of the a row's corresponding column?
I would like to have colText to be in the row's column, but it ...
2
votes
2answers
133 views
NSTableView visual issue
Can someone tell me what might cause this white rectangle in the column to appear? Thanks.
Thanks!
EDIT: If i resize that table column it goes away.
0
votes
1answer
727 views
Getting checkboxes to reflect their state in an NSTableColumn
I'm making this program that has an NSTableView with four columns, two of which are make of checkboxes. I'm only trying to get one working right now and I've gotten stuck.
First, here's my relevant ...
0
votes
1answer
105 views
How are the new taller table header rows with extra sorting functionality in iTunes implemented?
In iTunes 10 Apple switched to a taller table header with a slightly different visual appearance, where the column dividers don't reach the top of the row, and certain cells have extended sorting ...
0
votes
1answer
811 views
NSTableColumn auto resize only the first column
I have an NSTableView with 4 columns. I want to change the auto resizing properties of the first NSTableColumn. If the user resizes the app, only the first column is allowed to change his width. My ...
2
votes
1answer
1k views
How to disable sorting in NSTableVIew?
I have a an NSTableView when ever I click on a specific header column the data in the table get reversed or sort upside down. I have checked NSTableView as well as NSTableColumn but couldn't find any ...
2
votes
1answer
260 views
Problem retrieving NSCell data via [NSTableColumn dataCellForRow]
I am trying to retrieve a specific NSCell data from an NSTableView through [NSTableColumn dataCellForRow] but every time it shows different value for same row and same column. The data source remains ...
3
votes
1answer
2k views
How to bind data to a NSTableView from a NSDictionary?
Does anybody knows how to fill up a NSTableView using binding values from a NSDictionary?
Thanks in advance.
1
vote
1answer
795 views
How to refresh an NSTableVIew when you populate the NSMutableArray (bind) associated with it
Hello there
I just want to ask that I tried to bind my NSArraycontroller to an NSMutableArray, the array holds objects of type "iData" (its a custom class). The class further contains some ...
0
votes
1answer
297 views
How to set indicator image on column with multiple sort descriptors?
NSDisableScreenUpdates();
[self.productsArrayController setFetchPredicate:predicate];
[self.productsArrayController setSortDescriptors:sortDescriptors];
[self.productsArrayController ...
0
votes
1answer
941 views
Core Data Image Won't Load Into NSTableView Image Cell
In my code I am storing an image into my Core Data model (works fine). If I set up my view to have an NSImageView and bind its Data to Controller Key: selection and modelKeyPath: myImagePath, it ...
0
votes
1answer
186 views
Have more than one NSTableView with different Content - not displays data
I've two TableViews (one SourceList and one Normal TableView). I'm not using ArrayControllers, just using:
- (id)tableView:(NSTableView *)aTableView
objectValueForTableColumn:(NSTableColumn ...
1
vote
0answers
508 views
Different cells in NSTableView together with bindings
im working on a nstableview that contains information for some properties that are dynamicly created. Each row contains some cells that are common (name for example), but in one column they have ...
1
vote
1answer
576 views
How to auto resize table column when double clicking on Cocoa?
I want to auto resize table column to its content width when double clicking its header (resize cursor is showing), like on iTunes.
Anyone know how to do it ?
Thanks in advance
2
votes
2answers
5k views
NSTableView with multiple columns
What is an easy way to set up my NSTableView with multiple columns to only display certain data in one column. I have the IBOutlets set up, but I don't know where to go from there.
2
votes
1answer
569 views
Checkbox on table column won't register click
I've a table view to which I add columns dynamically. It must be done this way because I can't predict how many or which columns I will need.
Some columns are checkboxes but I can't click on them ...
1
vote
1answer
2k views
Problem naming NSTableColumn
I'm trying to create a column with an empty string as the identifier but Cocoa seems to replace the empty string with the word "Field" every time I try to create the column. How do you go around this?
...
2
votes
2answers
444 views
Why are my images in my NSTableView faded out?
To start, there's an NSArrayController ("Servers") whose content is an array of "server" objects.
I also have an NSTableView with a column. The column is bound to Server's "arrangedObjects.status" ...
1
vote
1answer
64 views
nstableview + cannot show partial file names
I am using Table View Control. In the control, I show File/Folders details, if I reduce the size of file/folder name column, it does not show partial file/folder name (whatever characters can be shown ...
1
vote
1answer
390 views
Text colors in an NSTableColumn on highlight
I've got an column of cells in an NSTableView that get their text color from the app's preference plist. I want to set the text color to white when highlighted, but have been unable to figure out a ...