Plugin Settings in Page Inspector
You set up the options view in much the same way as you setup the main plugin view.
Note: The minimum size for your CustomView? in IB should be 328(w) x 481(h).
Add the following to your .m file
- (NSView *)optionsAndConfigurationView
{
return optionsView;
}
Define an outlet in your .h file and hook it up to a CustomView? in your plugins .nib file.
IBOutlet NSView *optionsView;
To open the Page Inspector and switch to the plugin settings tab you can use the following call:
[self broadcastPluginSettingsRequest];
