I'm struggling with Cocoa for 2 hours now without success. I want to add a custom view to the toolbar. So, I added a NSToolbar to the window (with IB), and added my view (which works perfectly). IB automatically created a NSToolbarItem. I followed the instructions from Apple here: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Toolbars/Tasks/AddRemoveToolbarItems.html#//apple_ref/doc/uid/20000755-BBCGJCDJ

The problem is that I don't know what to do now, the view doesn't show although it's label is displayed in the window.

Here's the code I use to draw (very simple, it's for testing purpose)

- (void)drawRect:(NSRect)dirtyRect {
    [[NSColor blackColor] set];
    [[NSBezierPath bezierPathWithRect:self.bounds] fill];
}

Can someone help me?

Thanks in advance.

link|improve this question

79% accept rate
You'll probably need to post the code you're using to create and maintain the view. The code in the documentation worked for me when copy/pasted it and adapted it for my own app a few years back, so unless you're using it 100% as-is, it's likely a problem with your custom code. :-) – Joshua Nozzi Feb 15 '11 at 19:17
I updated my post. I guess there's nothing more to write since I use IB. Am I right ? – Forchita Feb 15 '11 at 19:36
feedback

1 Answer

I solved the problem.

I put my custom view in the root of the nib. I added a classic NSToolbarItem and created two outlets: one for the custom view and one for the NSToolbarItem. On -(void)awakeFromNib, I called setView: on the NSToolbarItem with the custom view.

According to some ressources on the internet, it is a bug with Interface Builder.

link|improve this answer
Thanks, indeed there is some kind of bug in Xcode, and it's still an issue in version 4.2. – charles Mar 20 at 5:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.