Tagged Questions
0
votes
1answer
21 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 ...
0
votes
0answers
11 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
1answer
13 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
19 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
2answers
38 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
33 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
3answers
33 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
0answers
39 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
1answer
50 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
36 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
46 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
1answer
91 views
Add column to nstableview in interface builder
How to add a new column to an NSTableView from the interface builder?
1
vote
0answers
46 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
64 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
68 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 ...
0
votes
0answers
46 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
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
49 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 ...
0
votes
0answers
22 views
NSTableView always has some intercell spacing when drawing
I have an NSTableView, but I am not displaying it directly in a window. I instead show an NSImageView in front of it, and draw all or part of the table view (actually, part of its containing scroll ...
0
votes
1answer
23 views
NSTableView messup with other controlls on mainView
I have added NSTableView on my mainWindow and then I want 2 button (up arrow and down arrow) to add on mainWindow but they will overlap the tableview.
But when NSTableView loads data or scrolls my ...
0
votes
0answers
50 views
Best way to add NSTextView to cell based NSTableView?
Due to specific requirements to my application I have to use NSTextView to handle user input.
I can't use view based table views since I want to support OS X 10.6.
When cell becomes editable it ...
0
votes
0answers
54 views
NSTableView Header gets blurred when scrolling
When I move the horizontal scroller randomly for sometime continuously,sometimes it is observed the NSTableView Header gets blurred. When clicked somewhere else,the header becomes normal again.This ...
2
votes
0answers
104 views
NSTableView's frame inside a NSClipView/NSScrollView using auto layout
I'm trying to create a NSTableView inside a NSScrollView (the standard configuration, that is) in code, using auto layout. I can't figure out how to make this work.
Here's my loadView:
- ...
-2
votes
2answers
67 views
How to add a table to an NSAlert [closed]
I want to add a NSTableView to NSAlert. But it always fault. but, when I using a NSButton, it work correctly. I don't know why??
0
votes
2answers
104 views
NSTableView save value without pressing Enter Key on lost focus
"First Number" is multiplied by "Second Number" to give "Sub-Total". Pressing "Total" button gives the sum of "Sub-Total"
As you can see in the image, the cell containing number "5" is in editable ...
0
votes
1answer
44 views
Scroll NSTableView to selection
OK, this is my situation :
I have an NSMutableArray bound to an NSTableView, via an NSArrayController.
I'm manipulating the table view's selection (trigger by keyboard), using NSArrayController's ...
0
votes
0answers
64 views
NSTextField setEditable - works on mouseDown but not on a separate action
Scenario 1:
User clicks on the NSTableView; finds out the row that was clicked on and sets Editable of the corresponding NSTextField to YES. Works fine, text is editable.
Scenario 2:
User right ...
1
vote
0answers
96 views
NSTableView group row text field selection
I want to make a custom text selection in my table view.
I found this awesome answer on how to set the colors, fonts, etc. of the cells:
http://stackoverflow.com/a/9596390/1320374
However, there is ...
0
votes
0answers
42 views
restrict editable content in NSTableView-cell
I managed to create a NSPopUpButton where the user can choose a value from a defined (and restricted) selection.
this input is send to an NSTableView-cell (row) via NSArrayController and KVC ...
0
votes
2answers
89 views
NSViewController view's not released when used in a view based NSTableView
I have a view based NSTableView that uses the views of NSViewController subclasses (InspectorViewController) :
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn ...
0
votes
1answer
64 views
Loading NSTableView from unarchived data
I'm trying to implement saving of user preferences in my OS X app. I have an NSTableView which stores its data to my .plist file, but I have troubles loading same data back to my NSTableView.
My ...
1
vote
1answer
122 views
Objective C - Adding a new row to empty NSTableView
I have a View-Based NSTableView which should be initially empty. I also have "add" and "remove" buttons for adding and deleting rows from same NSTableView.
My delegate methods and method for adding ...
-3
votes
2answers
73 views
Send NSArray to NSTableView
What is the easiest way to send the data stored in an NSArray to a NSTableView and display it line by line?
For example:
NSArray has data [a, b, c]
I want the NSTableView to say:
a
b
c
The ...
0
votes
0answers
12 views
How can I store the scroll information for an NSTextView that is a part of a custom NSTableCellView?
In Interface Builder I have a view containing an scrollable view-based NSTableView which uses a custom view for its rows, and the custom view contains an NSTextView that is also scrollable.
This is ...
0
votes
0answers
61 views
How to make NSTableView not reuse TableCellViews
I would like my view-based-NSTableview to not reuse previously generated TableCellViews that are scrolled out of scope. I figure that this would be possible with UITableView by overwriting ...
0
votes
1answer
111 views
view-based NSTableView from external Nib, Subviews are not intialized
i try to get my head around view-based NSTableViews on OS X.
My Problem is that in the loaded view cell (NSView subclass) the subviews are not initialized when i try to assign the values in my ...
0
votes
0answers
33 views
NSOutlineView or TableView - should I cache custom row views
I'm providing custom row views in the datasource for an NSOutlineView.
Things work fine when I simply return a newly created row view when this method is called, but not so well when I cache the ...
1
vote
0answers
29 views
NSTableView will not compress
I'm seeing kind of a weird bug with NSTableView/NSOutlineView and auto layout.
When I add an NSOutlineView to my nib and run the app, it will get bigger as expected from the given constraints, but it ...
0
votes
0answers
60 views
X-Code OS/X: How to display results of a core data fetch request in a table view
I perform a fetch request on a managed object context that is written into an array. The fetch itself works well and the array is filled correctly. However, as I try to display the array contents in a ...
1
vote
2answers
180 views
NSArrayController in entity-mode not updating after NSTableView with content-binding has been edited
I have an NSArrayController configured with mode 'Entity' that contains Core-Data-Entities of the type 'Person' and 'Prepares Content' selected. All other properties are the default-ones. As expected, ...
1
vote
2answers
80 views
Attending to each row of NSTableview to change image on Click-
I'm trying to add this example's ImageAndTextCell.h class to my project. I have added it successfully. It looks something like below
On row click i get the selected index and on IBAction I need to ...
0
votes
0answers
32 views
Does an entire NSTableView redraws when we change the drawing attributes of one row?
I am using an NSTableView in my application and when the user clicks a row I use core Animation to highlight that row. The problem is that if I draw the shadow of row upwards it is drawn correctly but ...
-4
votes
2answers
172 views
Adding rows in a NSTableView?
I have a tableView and two buttons. One to add a row, and one to remove a row(selected).
How would I add a row of textbox cells?
Also, how would i remove the selected row?
Would it be possible ...
0
votes
1answer
55 views
Change font color in NSTableHeader
How can I change font color in header of NSTableView?
In Xcode Interface Builder - any color modifications in Font Panel of Table Column properties are ignored / discarded.
Also I can not find a ...
0
votes
1answer
96 views
Auto-complete on NSComboBoxCell via Binding in Objective-c
I don't know whether I have set this up incorrectly or not, but what I have done makes sense to me.
I have an NSTableView with two columns in it - a properties column on the left and a values column ...
1
vote
1answer
28 views
NSImage is 'retained' between drag operations
Hi I have implemented:
- (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent *)dragEvent offset:(NSPointPointer)dragImageOffset
{
...
0
votes
1answer
97 views
Is auto layout system different for NSTableCellViews?
I have created a subclass of NStextField that expands and shrinks to accomodate changes in the text. Here is the code:
- (NSSize)sizeToFitContent
{
NSRect frame = [self frame];
CGFloat width ...
0
votes
4answers
403 views
Automatically adjust height of a NSTableView
I have asked this question once before, but I'm just not very satisfied with the solution.
Automatically adjust size of NSTableView
I want to display a NSTableView in a NSPopover, or in a NSWindow.
...
0
votes
1answer
51 views
NSTablview NSTextFieldCell SetSelectable -
I was trying to make one of the nstextfieldcell unselected for a particular condition. I have attached the sample code:
-(void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell ...



