Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
85 views

How to draw focus ring around NSBox on focus of child NSTextView in objective-c

I have one NSTextView within NSBox. I want to draw focus ring aroung NSBox whenever NSTextView got focus and remove focus ring as soon as NSTextView lost focus. Thanks,
1
vote
1answer
75 views

Auto resizing NSBox

I have NSBox with NSTableView siting inside it. I have disabled the scrolling in the table and trying to auto resize the NSBox to mach the number of entries in NSTableView but don't know how to...any ...
1
vote
1answer
297 views

Create NSBox runtime example

Please, could you give me examples of how to create the NSBox instance runtime to place it inside the NSView?
1
vote
1answer
748 views

Setting Horizontal Line (NSBox) line width in Interface Builder

I have an application that I am building am making use of Horizontal Line (which is just a special case of NSBox). I've placed the component into the interface, but what to adjust the thickness of the ...
0
votes
1answer
33 views

Custom interface object invisible after switching between tabs

My app has a preferences window with a toolbar. Its preferences tab is a separate NSView object. When I put standard buttons, boxes, etc. in each view, switching between tabs work wonderfully, but ...
0
votes
2answers
59 views

Why does my clickable box needs a double click to have a clickcount that is equal to 1?

I have an NSStatusItem that has an NSMenuItem which contains a custom NSView. this NSView contains 3 Subviews of NSBox which are clickable (implemented the mouseDown event). Strangely, when I run the ...
0
votes
2answers
29 views

Capture NSBox Subclass to PNG

I'm currently trying to capture the contents of my NSBox subclass to a PNG file. I've found some code that seems to do the trick perfectly (code that I call from my actual subclass): [self ...
0
votes
1answer
81 views

NSBox background image

How can I set background image a for an NSBox? I know we can put a color, but what about background image?
0
votes
1answer
212 views

Subclassing NSBox

How could I subclass a NSBox to change the width, height , font type and background color of the Box's title?.
0
votes
1answer
322 views

NSImageView Drag and Drop issues

I have an NSBox containing two static text fields and two NSImageView. NSBox is subclassed as myNSBox. I have registered the view/NSBox to accept appropriate drag types. So when i drag ...
0
votes
1answer
100 views

How to set title of NSBox from an array controller via cocoa- bindings

I have an array controller holding some values, say - subjects. I am displaying these values in a table view. I want to set the title of NSBox as subject in selected row. I tried to do it in ...
0
votes
1answer
202 views

Simple drag and drop application not working

I am trying a simple drag and drop application: I am creating a CameraIconView (subclass of NSView, containing some image views, text fields and a pop-up button), at run time. This view is enclosed ...
0
votes
1answer
357 views

Reposition an NSBox in the top pane of a horizontal NSSplitView

I've worked for hours on this and I just can't get it - should be really basic stuff but it's not getting thru my thick skull. I think it has to do with the coordinate system in Cocoa but I really ...