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.

learn more… | top users | synonyms

0
votes
0answers
12 views

Updating NSOutlineView items

I have been trying unsuccessfully to edit and update items in a source List NSOutlineView, I’m not using a treecontroller but datasource and delegate. My understanding is that ...
0
votes
0answers
13 views

View Based NSTableView NSTextField only showing text on selection

I have made a table view programmatically, and am using a subclassed NSTextField with 2 extra properties (row and column). I have set the scrollview to not draw it's background and the table to have a ...
0
votes
1answer
34 views

Pause and resume repeatable NSTimer when closing and opening window

Now I know there are questions on SO about NSTimer pause, but none on repeatable and closing/opening windows. Toggeling pause works perfect (checked using button). Reopening window gives BAD_ACCESS ...
1
vote
1answer
27 views

NSTableView edits not changing NSMutableArray

I have a Class that stores some strings along with a BOOL flag that is set to YES if one of the strings has been updated. I have a NSTableView that displays the strings in my class. The view is ...
1
vote
0answers
16 views

How to merge row of selected column like excel sheet in cocoa

I am trying to implement similar functionality(merging rows and highlight it by color) of microsoft excel sheet. is there any methods, api or any sample code for such type of functionality.
0
votes
0answers
5 views

cocoa: custom text in NSCell for NSTableView

I have problems for customizing the text in the NSCell for the NSTableView. Below is the main window: The window has a table view which shows an icon, a title,a progress indicator and a message.As ...
0
votes
1answer
25 views

NSTableView Drawing Count

I have two tables (NSTableView) on a window. Well, the number is irrelevant. Anyway, the source of the first table (tableView1) is NSMutableArray with NSMutableDictionary. And I have the following ...
1
vote
0answers
29 views

How to set color of more than one cell in NSTableView

I want to set color of multiple cells choosing from a color well. When I move to another cell,previous colors of the cells should be retained just like the excel features. How can I do that? Inside - ...
0
votes
0answers
18 views

How to set NSTableView delegate & datasource?

I create a subclass of NSViewController named MyTBViewController with xib, and add a NSTableView to xib. But when i connected NSTableView's delegate to File's owner and run app, it tell me ...
0
votes
0answers
9 views

mouse tracking of a Custom Cell with text Image button for an NSTableview

here goes my dilemma : I want to be able to track the mouse event for a customized cell, with some background search, it came back to overriding the tracking methods of the cell in question: – ...
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
3answers
20 views

Limiting NSTableView to two selections

I am wondering if anyone has a method to limiting the number of selections allowed in an NSTableView to 2 concurrent selections. I am trying to calculate the delta between two selected values and ...
0
votes
3answers
46 views

How populate prototype cell text labels with NSDictionary object populated with JSON data using AFNetworking

New to iOS. I am downloading JSON data using AFNetworking and putting the data in a Dictionary object. This is done in the following code: -(void)locationRequest { NSURL *url = [NSURL ...
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
0answers
40 views

Insert/remove rows in NSTableView while keeping a particular row anchored in position

I'm displaying 2 types of data in an NSTableView, let's call them type A and B. It is a single column and each row is either type A or B. I have 3 buttons which essentially filter the data to display ...
1
vote
0answers
31 views

Pop up Button in view based NSTableView

I'm trying to use a popup button within a view based NSTableView, i would like to populate the values for the popup with the array controller "Sectors". I can get this working fine if the popup is ...
1
vote
3answers
36 views

Change separator color to background or remove it from NSTableView

I am looking to remove the separator color in View based NSTableView. It looks like this : For UITableView there is a method setSeparatorColor: but not for NSTableView. Solutions will be highly ...
0
votes
1answer
30 views

How to insert the value in selected cell only of nstableview

I am trying to insert value in a particular cell only, for example how to insert value in (2,3) 2nd row and 3rd column. i know how to insert value in a table but i don't know how to insert value in ...
0
votes
0answers
40 views

Automator Stack Like Interface with Cocoa

I've been attempting to create an automator styled interface similar to this: My approach has been a NSTableView with view based cells, but along the way I've met many pitfalls like cell row sizing ...
0
votes
2answers
88 views

Custom background colors for NSTableCellView

I am trying to create a custom NSTableCellView. I subclassed NSTableCellView and I need to have a custom background color and highlight/selection color. Is there a way to do this?
0
votes
1answer
54 views

NSTableView with chat bubbles

I need to create a NSTableView with chat bubbles like Messages app. Is there any sample code/tutorial that I can use. I am trying to use view based NSTableView, with custom NSTableCellView. I added a ...
0
votes
1answer
14 views

NSTableView Delete Row by clearing text

I want a simple table with 1 string column that adds a new line by using the return key. Also I want to delete a row if the user clears the text on a particular row too. I've managed to add a new ...
0
votes
1answer
38 views

Adding row to NSTableView doesn't change its frame

I'm trying to insert a new row at the end of a NSTableView, scroll to it and start editing it. Everything seems to work fine except for the scrolling. The table view seems to scroll to the row ...
0
votes
2answers
79 views

Programmatically bind a NSTableView

I trying to get a better understanding of cocoa bindings. I can get a basic Table working with a NSArrayController in IB builder. I'm using the same project and attempting to connect the bindings ...
0
votes
1answer
24 views

making insertRowAtIndexes:withAnimation visible when inserting new row at end

I'm using insertRowAtIndexes:withAnimation to add a new row to an NSTableView. If the rect of the new row is already visible then this works fine but there is a problem when inserting a new row at ...
0
votes
1answer
109 views

Getting cell value from NSTableView for a selected row in cocoa

For a NSTableView that is bound to an arraycontroller through a list i was trying to get the value of a cell of the selected row. The code is - int row = [minMaxTableView selectedRow]; NSTableColumn ...
0
votes
0answers
39 views

How use filter for NSTableView

I have NSMutableDictionary and NSMutableArray (table1 - 1 column and n rows). and I have another NSMutableDictionary and NSMutableArray this combine made table2 and I need use filter for table2, ...
0
votes
0answers
31 views

Make my app remember checkbox settings after terminate/reopen

To begin with, I'm kinda new to coding and objective-c and I've run into a problem with my app. My app is using check boxes that can be checked or unchecked (like a shopping list). I've distributed ...
1
vote
0answers
42 views

Customize NSOutlineView row editing

I' ve a NSOutlineView configured as SourceList. When I double click on a row this become editable and I want to modify the apparence of that TextField (or NSTextView?). Anyone know how to do that? ...
0
votes
0answers
48 views

sorting a string NSTableView Column having float values in cocoa

I have a NSTableView with columns having string type attribute. The values being displayed in the string column are float numbers. I am not able able to sort that column by clicking on the column ...
0
votes
2answers
47 views

Show NSWindow on right click in NSTableView

I'd like to display an NSWindow when right clicking an item in an NSTableView, similarly to how the available outlets are shown in Interface Builder when you right click an object: Unfortunately ...
0
votes
0answers
19 views

NSTableView NSArrayController NSButton key-equivalent FirstResponder coordination

I have an NSWindow with numerous NSTableViews that are bound to their own NSArrayControllers. Each of these has a set of add and remove buttons to deal with providing new data. I also set up identical ...
1
vote
1answer
90 views

Objective-C: How to get data from selected row in table?

I need to retrieve a string from data from a selected row in a table to compare it to a string. I call NSArray *values = [self.tableArrayController selectedObjects]; To get the objects at the ...
0
votes
1answer
59 views

Objective-C: Am I Properly Using this Delegate?

I have a mainWindowController that contains a tabView (which I'm using to switch between views on the main window). I have view controllers (each with a nib file) for each view. One of the views, ...
0
votes
1answer
96 views

Add column to nstableview in interface builder

How to add a new column to an NSTableView from the interface builder?
0
votes
1answer
63 views

Array Controller not updating Table View until “Add” button is pressed

I'm new to Cocoa and Objective-C, so I'm following the Lynda courses and learning a lot. Thing is, I've encountered a problem that I cannot figure out, even though I seem to be doing it exactly the ...
1
vote
0answers
50 views

View Based Table View Within a View Based Table View

I'm looking to create a Mac App in which you have a Table View within a Table View. I used a View Based Table View and inside it's cellView, I've placed another Table View. So far, so good. I run the ...
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 ...
0
votes
2answers
70 views

How to convert Cell-based table into View-based table in cocoa?

I'm having hard time understanding how to implement view-based table in cocoa. Right now I have working implementation of old-fashioned cell-based table. As I figured out, just dragging the ...
1
vote
0answers
20 views

How to place an NSButton over an NSTableView

1) No table behind button 2) Table loaded 3) After scrolling If I place a button over an NSTableView I get artifacts being left behind after scrolling. Does anyone know how to fix this? My ...
0
votes
0answers
54 views

Drag and Drop Audio file in NSTableView Objective-c

I want to drag and drop the audio songs from desktop to the nstableview, i tried the following methods, i want to know how to check the file type is audio and How to append these new files into ...
0
votes
0answers
27 views

Notification of an attempt to scroll past last row in NSTableView

I have an NSTableView which displays 5 rows, and a user who is using the cursor keys to change the selected row. If the user starts at row 1, then selects row 2, 3, 4 and 5 by consecutive "down" keys, ...
0
votes
0answers
25 views

NSTableView vertical grid colors on Lion

My app includes an NSTableView setup from NIB. In the NIB file I've added Solid Vertical Grid then compiled it under OS X 10.8 but with deployment target OS X 10.7. Everything works fine on OS X 10.8, ...
0
votes
0answers
43 views

How do I determine the row in NSTableView that represents a specific object instance?

I have a NSTableView driven by NSManagedObject/CoreData and a custom graph view on the same form which plots each row on a X/Y grid based on some derived calculations. Each point on the graph view ...
1
vote
1answer
52 views

Is it possible for a view-based NSTableView to draw outside the row bounds?

I have an NSTableView with 2 columns. Each column contains a different NSTableCellView subclass and in some situations I'd like to achieve an overlapping effect, so for example the top of the view in ...
0
votes
1answer
50 views

Scroll NSTableView on load

I have a NSViewController containing a view-based table view. When I initialise the view controller and put its view on screent the table view is scrolled to the bottom. I would prefer instead to have ...
1
vote
0answers
25 views

Use a bound NSTableView to create / delete reflexive relationships

In my Core Data application, I have a single "Person" entity with one attribute ("name") and one relationship "persons", which is in many-to-many relation with Person (reflexive relation). My idea ...
0
votes
2answers
69 views

Remove NSTableCellView

How do I maunally remove a NSTableCellView (or a subclass of it) from my NSTableView? When i empty my array holding information, queue DB for new information and then reload the tables data, it only ...
0
votes
1answer
179 views

What makes the difference of cell-based NSTableView and view-based NSTableView?

If my understanding is not wrong, cell-based NSTableView and view-based NSTableView is same type of instance. Then, how cpu distinguish cell-based and view-based? As far as I know, delegate method is ...
0
votes
0answers
46 views

Trouble in handling text selection in Custom Cell of NSTableView

I populate CustomCell based NSTableView in my main window. In my custom cell, there exists some images and texts like below: ┌─────────────────────────┐ │ ┌───┐ text01 │ │ │img│ ...

1 2 3 4 5 21