Tagged Questions
The ibplugin tag has no wiki summary.
9
votes
4answers
3k 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
...
3
votes
2answers
404 views
IBPlugin and paths to framework
IBCocoaSimulator crashes when IB cannot find the framework, I assume that happens to you too. I can run IBCocoaSimulator without crash, when I manually copy my framework+ibplugin from the build dir ...
1
vote
0answers
117 views
Cocoa Bindings and Custom NSCell properties
I have a problem regarding subclassed NSCells (Check Box Cells). I want them to have a title and a subtitle next to the checkmark (so I created NSString properties for these). Their values shall be ...
1
vote
1answer
82 views
How do you make a bindings view in a Interface Builder Plugin (IBPlugin)
I am trying to make property have a bindings inspector view like the textfield has for it's value. With a combo of all nonview items that has a checkbox toggle if you want to enable the binding or ...
0
votes
1answer
129 views
Remove ibplugin from xib
How to remove all traces of ibplugins from .xib files? My Xcode3 project had around 10 custom ibplugins used lots of places through out my around 20 .xib files. I have reworked this code so it no ...
0
votes
1answer
72 views
Interface Builder Plugin Image inspector property problem on load
i have created a custom NSView that displays an image.
i have created a property in Inspector view with binding to File's Owner.
Everything works fine in runtime image changing.
But nothing is ...
0
votes
1answer
109 views
IBPlugin: Adding additional objects on drag from IB Library
I have a list view class that just like NSCollectionView requires an additional prototype item and a prototype view to be of any use.
When dropping an NSCollectionView from the library in Interface ...