Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
336 views

Binding to NSMatrix for BOOL attributes

I have a simple core-data entity that has a Boolean attribute called subscribedToNewsletter. I have designed my UI to represent this field as a radio button group with Yes/No as the text values (and ...
2
votes
2answers
276 views

How can I convert this C Calendaer Code into a Objective-C syntax and have it work with matrixes

#define TRUE 1 #define FALSE 0 int days_in_month[]={0,31,28,31,30,31,30,31,31,30,31,30,31}; char *months[]= { " ", "\n\n\nJanuary", "\n\n\nFebruary", "\n\n\nMarch", ...
1
vote
1answer
51 views

setAction: Always Called with mouseUp

I have in my mac app an NSMatrix made up of NSButtonCells. I do this: [matrix setAction:@selector(matrixbutton:)]; However this is always called when the user releases the mouse click. Is it ...
1
vote
1answer
125 views

Assigning a delegate programmatically

I am attempting to assign my view controller as the delegate to a NSTextField I created from within the application: replaceCell = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 60, 60)]; ...
1
vote
1answer
95 views

How to know how many rows and columns are selected in a NSMatrix?

How to know how many rows and columns are selected in a NSMatrix ? I tried many things but it does not work. I thought about first getting the selected cells by calling selectedCells method of ...
1
vote
1answer
139 views

Resize NSBrowser column to fit the width of the content

I'm using an NSBrowser (10.6SDK/Cocoa app) and I want to send a message to a browser column that will make it resize its width to match the width of the largest cell within that column. Seems ...
1
vote
1answer
1k views

Creating an NSMatrix programmatically, Snow Leopard

I'm trying to create an NSMatrix of an NSImageCell prototype programmatically (if you can help me doing it via Interface Builder, be my guest at answering me here) I created a new, empty project. In ...
0
votes
0answers
22 views

How can I create and display an NSMatrix using MacRuby?

From a new Xcode project, using MacRuby, what code needs to be added to applicationDidFinishLaunching to draw an NSMatrix in the main window? I've been trying to do this using various methods ...
0
votes
2answers
34 views

Getting the column and row of an NSCell in an NSMatrix in Cocoa

Given an NSMatrix and an NSCell is there a quick way to query the matrix to know at which row and column in the matrix the cell is placed. I would like to know this upon receiving action messages from ...
0
votes
1answer
44 views

Which control can be used in order to display a dynamic form (with various types of data)?

I'm facing the following problems: We have meta data for items, each item can be a different type of NSControl, currently NSTokenField and NSTextField, but we might need NSCombo or other types. I ...
0
votes
0answers
42 views

NSMatrix - replaceing cells - message sent to deallocated instance

Using OSX Lion - XCode 4.1 I have a program which contains an xib with an NSMatrix control. Inside of the window controller I am trying to add cells to the matrix programmatically. Each cell may be ...
0
votes
0answers
43 views

cocoa/osx - How to create a NSRadioModeMatrix ( radiio button ) NSMatrix

I want to create an NSMatrix of mode NSRadioModeMatrix programatically just like the interface builder 'Radio Group' object. This is the code I am using but it doesn't work and I don't fully ...
0
votes
0answers
43 views

NSMatrix horizontal flow

I have a NSMatrix filled at run-time with custom NSButtonCell's through bindings. The result is a matrix that grows vertically on rows. How can I make it only grow horizontally? I'd like something ...
0
votes
1answer
80 views

NSMatrix on NSTableColumn

Is it possible to set an NSMatrix as the cell of a NSTableColumn?. If possible, how should I do it? Thanks in advance.
0
votes
0answers
179 views

Create and display NSMatrix in xcode 4 cocoa

I want to create NSMatrix (3x3) object and I display this matrix with for loop.but ı don't have any idea about NSmatrix.Can anyone help me on this topic ?? (if it is told understandable step by ...
0
votes
1answer
200 views

NSMatrix simple binding question

I am trying a sample application in which I have taken following controls: i. NSMatrix (with 2 elements, serving as radio button) ii. Button (which when clicked generates action based on radio ...
0
votes
1answer
142 views

disabling radiobutton in Cocoa

I have 2 radio buttons ( NSMatrix with 2 rows and 1 column) and have defined them in the header file as IBOutlet NSMatrix *temp; Now when I pick a certain option, I want to disable both these ...
0
votes
1answer
235 views

How to track mouseover in a cell of NSMatrix?

I would like to track a mouseover event of a NSCell in a NSMatrix. The documents say I can set the NSMatrix mode to NSTrackModeMatrix and the cell will be sent the message ...
0
votes
1answer
314 views

Showing image before text in NSButtonCell in NSMatrix

I am displaying buttons in NSMatrix. My requirement is: to change color of button title and place an image at beginning of title, when certain condition is satisfied. To do so, I used ...
0
votes
1answer
292 views

Passing array of custom objects to NSCell in NSMatrix programatically

I have an NSArray of custom NSObjects. Each object has some properties and an image that I would like to display in a grid view. NSMatrix appears to be a good solution to my problem, but I am having ...
0
votes
1answer
108 views

Hillegass: Cocoa Prog 3rd Ed: Ch. 33 on OpenGL: Where's the Matrix?

I'm using XCode 3.1.4, on OSX 10.5, targeting same. In Ch. 33 we're asked to drag an NSOpenGLView and an NSSlider onto the IB library, and then do Layout -> Embed Objects in -> Matrix. Except the ...
0
votes
1answer
107 views

Interface Builder Bug?

I have a cocoa program that I have I am writing on a 10.6 system, but targeting to 10.5. On the 10.6 system, it works fine. However, when I run it on the 10.5 machine, I get: The sender of menu ...
0
votes
2answers
298 views

UIKit controls for a sudoku grid?

I've recently completed an algorithmic sudoku solver in C, one in which three different approaches are taken to solve the puzzle. It was a piece of code I wrote for a Project Euler solution. Quite a ...
0
votes
3answers
724 views

Getting the current state of NSButtonCell in an NSMatrix

I'm using an NSMatrix as a keypad and calling: [selectedCell setEnabled:NO]; [selectedCell setTransparent:YES]; when a key is selected (to prevent the same operation being performed again). ...
0
votes
1answer
406 views

Creating NSMatrix of NSImageCells

I need to create an NSMatrix with NSImageCells bound to an array controller. So the content of the NSMatrix is bound to an NSArray (so there are as many NSImageCells in the matrix as there are objects ...