0
votes
0answers
12 views

many shared key equivalent sensitive to enclosing nsview interface builder

Can someone suggest how to re-use or share the same key equivalent across a variety of buttons, each button add items to an associated list (implemented as a nstableview). Two or more lists may be in ...
1
vote
1answer
130 views

Reusable NSView from .xib

In several parts of my application, I need a control where a user can enter a password. The password field is secure, however I want the user to have the ability to switch the field to plain text and ...
0
votes
2answers
176 views

Mac OS X custom application view

I've been searching Google and S.O. the last few days and am not quite sure the right question to even ask. I'm 100% a complete noob when it comes to OS X programming. Thought I'd try my hand at a ...
1
vote
1answer
65 views

NSView subclass with IBOutlets and IBActions

I have an NSView subclass that is used for displaying a custom object. The drawing logic is all in methods on the subclass. There is no view controller associated with this view. I have added a ...
1
vote
0answers
83 views

Composing NSViews using Interface Builder only

I have some custom views that I want to reuse throughout my application. I create a new Objective C class in XCode and set the type to 'NSViewController'. I check the box to create .xib file for the ...
0
votes
1answer
136 views

Can't CTRL+Drag NSButton to custom NSView header

I'd like to create a custom NSTableCellView instantiated by Interface Builder. I've set my Table Cell View class to MyTableCellView, and properly created MyTableCellView : NSTableCellView .m/.h files. ...
0
votes
1answer
195 views

Access NSWindow's Element via Child NSView/ViewController

Is it possible to access a NSWindowController's element from a child NSViewController? Essentially I have a NSProgressIndicator that spins on the bottom corner of the NSWindow. This works because my ...
0
votes
1answer
199 views

NSWindow is nil after awakeFromNib

I have a nib file which has a bunch of views and custom objects in it. One of those objects is a custom controller object. In it's awakeFromNib method I want to access the window that is holding all ...
0
votes
1answer
172 views

Custom NSView Event Handelling

I am trying to set up an interface like the one used in Xcodes interface builder. What i would like to know is what i would need to do to translate mouse events i.e click drag & relay mouse ...
2
votes
1answer
331 views

Strange behavior for drawRect: override of NSView?

Greetings all, First of all thank you all for helping me out with my previous questions. I see strange behavior when overriding drawRect: for NSView. I have a very simple NSView subclass ...
2
votes
1answer
142 views

How do you get the default insets of NSViews and NSControls?

I'm writing some custom layout code to align some NSViews. I loop through all the views and set their frame.origin.x to the same value (left alignment), but the views don't look like they're aligned ...
0
votes
3answers
544 views

Transparent NSImageView falls behind NSView

I have a transparent .png image that lays over an NSView and it should look like this: However, sometimes, with no rhyme or reason or indication that it is going to do this, the NSImageView falls ...
1
vote
1answer
134 views

What type of View is that slim bar above the editor in Xcode?

I want to use the same sort of UI style of Xcode has right above the editor pane, as show below: I've browsed through all the Views in Interface Builder and can't figure out what type of view this ...
0
votes
1answer
1k views

Loading NSView subclass from a XIB

I need to use a custom view into a NSMenuItem. I've created a new view XIB and customized the view in it. How can I load that view and set it in the NSMenuItem using the setView: method? UPDATE: I've ...
4
votes
2answers
740 views

any Cocoa control code that I can use that acts as a patch bay?

I would like to make a patch bay type control... any source online that anyone knows of that I could work from? Thanks
1
vote
1answer
159 views

Get layout frame of NSView (i.e. ibLayoutInset)

I'm working on an Interface Builder-type app for interface design. I would like to be able to align NSView's along their layout frames. Is there a way to access the ibLayoutInset property from my ...
3
votes
2answers
9k views

addSubview and autosizing

How does one add views to a window, so that the views are resized to fit within the window frame? The problem I'm making a sheet window containing 2 views, where only one of them is visible at a ...
1
vote
0answers
711 views

Resizing views in Interface Builder

I'm having trouble visualizing something. Let say I have three views inside a scrollview with some other content. Top, buttons and image. buttons and image are both inside top. Top does NOT fill up ...
1
vote
2answers
489 views

Reusable bits of interface, designed in IB

I'm making an app that includes the same group of buttons in many different contexts. The buttons send their actions to a different object in each context. I'd like to be able to design a single ...
0
votes
2answers
188 views

How do you change which view is active in a window?

The program I'm working on right now is a bit cumbersome, as it starts with a central menu, and then once the user chooses an option from it it opens their selection in a new window, when I've got a ...
3
votes
3answers
515 views

Dynamically loading a part of a Window in Cocoa

I have an area of a Window (in my MainMenu.xib) which I'd like to populate dynamically with unrelated "views" such as an NSTable, IKImageBrowserView etc. at different points of time depending on some ...
10
votes
4answers
4k views

Binding a custom NSView: Does it demand creating an IBPlugin?

I have created a subclass of NSView to draw an image as a pattern: @interface CePatternView : NSView { NSImage* image; id observableObjectForImage; NSString* keyPathForImage; } @end ...