An Apple object that displays data for a set of related records, with rows representing individual records and columns representing the attributes of those records.
1
vote
1answer
110 views
how do I remove the space between cells of an NSTableView?
I have set the intercell spacing in my NSTableView to 0 by sending:
[self.tableView setIntercellSpacing:NSMakeSize(0, 0)];
in the window controller's awakeFromNib but there is still an (possibly 1 ...
1
vote
2answers
200 views
Make a NSTableCellView editable
I created a View-Based NSTableView with a single column. This column is populated with a standard NSTableCellView from Interface Builder (I chose the version with image and textfield).
Now I want to ...
1
vote
0answers
40 views
How to set the focus a new record/field
When I add a new record to a Table view, it shows like this:
How can I get the field ready for input so that it is highlighted and looks like this:
1
vote
0answers
61 views
NSTableView and sticky vertical columns
I need help about the best way to achieve the UI described below.
I have a NSTableView with two columns as show in image, the tableview has no headers by design
I want to scroll vertically both ...
0
votes
1answer
167 views
How to make round cornered NSTableView rows?
I'd like to make something like this (on the new iTunes):
As you can see when the row is selected it's "highlight" state is a round cornered row.
How can I achieve something like this?
0
votes
1answer
182 views
View-based NSTableView with floating group rows
This is actually a pretty simple question: Is there any way of making a group row's view on a view-based NSTableView float without making it also transparent?
1
vote
0answers
103 views
NSArrayController selectedIndex changing to 0 after addObject is called
My setup:
I'm making a tab-based application using an NSTableView to display tabs and allow users to select tabs.
I have an NSTableView bound to an NSArrayController (tableView.content is bound to ...
0
votes
1answer
155 views
Can NSTableView column bound to coredata Entity NSArrayController in secondary thread work?
My program uses Coredata (SQLite), NSPersistentDocument, NSTableView and an (entity) NSArrayController. I want to have the NSTableView's columns in the Main thread bound to the entity ...
-2
votes
2answers
144 views
how to develop complex UIcellView [closed]
I want to develop a timeline kind application which show information in TableView but for different different information and kind facebook iphone apple like cell where cell size can adjust with image ...
0
votes
2answers
104 views
Cocoa - Memory Issues - NSTableView
I have a small issue with memory with the current code I have written, I'm new to cocoa and programming with object orientated languages, so currently Xcode does all the memory management stuff for ...
0
votes
1answer
47 views
List contents of ZIP file using ZipKit
I need to get list contents of ZIP file using ZipKit framework. The content I want to present in NSTableView. So, ideally I need to get NS(Mutable)Array. Is there a simple way how to do this ?
Thanks ...
1
vote
1answer
177 views
How to update the visual aspects of a NSTableCellView?
I have a custom NSTableCellView with 2 NSTextFields, 1 NSProgressIndicator and 2 Buttons.
I want to hide 1 button and the Progress Indicator when I reload the Table. The problem is if my NSTableView ...
0
votes
2answers
192 views
How to get NSTableView heightOfRow for cell that contains WebView
I have an NSTableView that has a single column, with rows that contain a WebKit WebView. The problem I am having is how can I get the size of the WebView so I can set the height in the table view's ...
0
votes
1answer
166 views
Why does reloadData work but not reloadItem?
I have a NSOutlineView that works great. If I change the model, the outlineview is updated when I call: [self.myOutlineView reloadData]. However, when I profiled my program it seems that 10% of the ...
0
votes
2answers
282 views
NSTableView - select row and respond to mouse events immediately [duplicate]
I have a view based NSTableView in which the cells contain a number of controls including text fields and edit fields. When a user tries to click on a control within a cell in order to, for example, ...
0
votes
1answer
97 views
Core Data NSTableView do not match
I'm having an issue with Core Data. I have an Array Controller setup that links the data to an NSTableView.
I have a function that runs code every few seconds and in it I display the list of files
...
1
vote
0answers
87 views
Calling makeViewWithIdentifier:owner: causes ARC to re-create ivar
I'm writing a sandboxed ARC app with a view-based NSTableView that accepts dragged-and-dropped files (NSURLs). I ran into some significant strangeness in the following NSTableViewDelegate method:
- ...
0
votes
0answers
91 views
NSTableView can't update visualized data
I know that this is a typical question, I found many threads talking about this, but I can't really understand where's the problem with my implementation.
I set up everything and I'm able to see data ...
-1
votes
1answer
62 views
NSArrayController bind to Array of Arrays [closed]
i have the Problem that i have an MutableArray _output inside are a different number of MutableArrays. I would like to print the Informations inside to an NSTableView. The MutableArray _output are the ...
0
votes
2answers
195 views
NSTableView to allow user to choose which columns to display
Anyone knows how to allow users to choose which columns of an NSTableView to be displayed by right clicking and then selecting? Just like iTunes does.
0
votes
1answer
138 views
NSButton inside tableCellView: how to use the “action invocation” for a View Based NSTableView/NSArrayController
For a View Based NSTableView/NSarrayController: how would I use the "action invocation" from a NSButton inside a tableCellView to change an attribute for an entity?
I have the following setup:
A ...
0
votes
0answers
129 views
NSOutlineView: multiple-column group rows
I'm trying to build an NSOutlineView listing some items (similar to folders) which can be expanded to show their content (similar to files). Root items would have their rows floating as long as their ...
3
votes
1answer
232 views
Using NSTableView Animations with Bindings
I have a NSTableView that is bound to a NSArrayController. The NSArrayController's contentSet property is bound to a NSMutableSet. Everything works great.
Now I want to use the animations built in ...
0
votes
0answers
27 views
How to set NSTableView numbers of row
i bindings array controller to an NSTableView,
the array controller binging to an NSMutableArray.
when the count of the NSMutableArray changes, the row number of nstableview not change
and it cannot ...
0
votes
0answers
50 views
NSTableView reloadData error
NSTableView(myTableView)binding to NSMutableArray(myArray)
1.init myArray
myArray = [[NSMutableArray alloc ]initWithCapacity:200];
for(int i=0; i<200; i++ ) //add 200 objects。
{
Item * pvi ...
0
votes
1answer
145 views
resizableImageWithCapInsets inside NSTableView (view based)
i try to do resizableImageWithCapInsets (as in iOS) for mac.
// right bubble
NSLog(@"==================== OLD VALUES ==============");
NSLog(@"size->%@",NSStringFromSize(size));
...
1
vote
1answer
90 views
How to know when NSTableView is done (re)loading its contents?
I have a UI that looks similar to the mail app. A table view along the left with a single column of items. When one of the those items on the left is selected, details about that item are shown on the ...
1
vote
0answers
75 views
Uneven NSTableCellView Focus Ring
I'm working on a small app that uses a view-based NSTableView to display contents. I'm using an NSTableCellView subclass as the contents for each cell, and I'm having a problem where the ...
0
votes
1answer
69 views
Editing custom NSCell
I'm in the process of creating a custom NSCell, which will work like the shortcut capture cells in XCode, and trying to figure out how to intercept edit requests (for instance, when a user ...
1
vote
0answers
140 views
NSTableCellView subclass for disclosure button like in Console.app
In my NSTableView, I'd like to have cells like Console.app: with a disclosure triangle button on left to expand the line if text is truncated.
Someone advised me to subclass NSTableCellView, but ...
0
votes
1answer
155 views
NStableView Cocoa
I populated my NStableView with tableView Controller and it's working fine. I only want to know why every time I am getting the data (Presented in table Cell) whenever the user hovers on a particular ...
1
vote
1answer
172 views
Automatically adjust size of NSTableView
I have an NSTableView, which should resize it's frame when a row is added.
I would make 2 properties, maxHeight and minHeight, and if any rows are being added or removed, I would resize the table view ...
1
vote
1answer
147 views
How to create iOs like looking NSTableView?
I want to create a good looking NSTableView with an iOs "feel" to it. Every NSTableView I create looks like it's from the late-90s and feels horrible in my opinion.
I know that there are some iOs ...
0
votes
2answers
129 views
Cocoa - Filter an Array NSDictionary on a tableview
I've a tableview that has an array of dictionaries datasource. Now I want to do a filter inside this table, but I want to be able to filter for 5 different fields, like name, number, email, etc.
How ...
0
votes
2answers
546 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
NSTableView view based 'Image & Text Table Cell View' not recognizing my custom NSImageView subclass
First i changed my NSTableView to view based and created an
IBOutlet of my NSTableView.
Then i dragged the Image & Text Table Cell View to it.
After that i changed the NSImageView that's inside ...
0
votes
1answer
64 views
Alert window on cancellation row of tableview
I have a NSTableView connected to an arraycontroller, I would like that when the user click on the cancel button of the line, an alert window will appear that asks for confirmation before deleting. ...
1
vote
1answer
397 views
How to get a cell value from NSTableView in Cocoa?
I have probably a dumb question, but Im pretty new to Cocoa, so I don't feel bad asking it :)
I have a tableview filled with some numeric values. What I need is that when the user clicks on a ...
1
vote
1answer
360 views
View-Based NSTableView
I have been beating my head against the wall trying to come up with an understanding of tableView:heightOfRow: and I guess I need help. I want to do dynamic row heights for a textView inside the row, ...
0
votes
0answers
22 views
Ask for confirmation before deleting the rows in NSTableView
Could you tell me how can I implement a function that when you click the button for deleting rows in the NSTableView asks the user to confirm?
0
votes
2answers
237 views
programmatically using NSTableView
I need to create/use a NSTableView programmatically. From the documentation, it seems that I would implement the NSTableViewDataSource protocol. But the function ...
0
votes
1answer
104 views
disable the reordering of rows in a NSTableView
I need to disable the reordering of rows in a NSTableView so that when I open the application data of the NSTableView are in the same order in which I created them.
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
1answer
97 views
Presenting NSDictionary in UITableView [duplicate]
Possible Duplicate:
NSDictionary to UITableView
I have NSDictionary with keys, for example, @"first_name". I want to show objects for this keys using NSTableView. How can I do it?
Thanks.
0
votes
1answer
29 views
how to rebind nstableview IN COCOA
I have a NSTableView and a NSArrayController for the NSTableView.
there is only one column in the table,"name"
at first, user open one file, in the arrayController will be ...
0
votes
0answers
19 views
TableView valueForKey vs. “if” queries
Why would a tableView data source method that works fine for similar classes using the valueForKey message with appropriate identifiers set for the table columns fail (for example below):
- ...
0
votes
1answer
68 views
How to pre-fill a NSTableView bound to an ArrayController in a Core Data ( Document based)
Here is my problem:
I have a Core Data- Document based program with ARC ( Automatic Reference Counting);
I want the tableView shows some data at the beginning.
but I receive nothing.
Here is what I ...
1
vote
2answers
256 views
Adding footer in NSTableView
I'm developing a Cocoa application for Mac. In the application, I have to add a footer to a table for adding and deleting rows like in the attached image:
Is there any default controls present for ...
-1
votes
1answer
67 views
NSTableview and calculation of attributes
Can anyone please help me with the following problem?
I'm creating an application which holds the entity, called a salt.
This entity has some attributes like milligram and millmolar (concentrations).
...
0
votes
1answer
173 views
Using an array of arrays to populate NSTableView
I currently have a number of arrays, each containing show title, description and duration. I have them in a further 'shows' array and I'm using this array to populate my NSTableView. What I would like ...