| 1 | Open the nib of your plugin project in Interface Builder. |
| 2 | Add a custom view to the nib file. |
| 3 | Add Print
and Save
buttons to this custom view. |
| 4 | Create outlets in your controller class for this custom view and buttons and make the appropriate connections in Interface Builder. |
| 5 | Add 2 methods in your controller class to be called from the 2 buttons and connect the buttons to these methods in Interface Builder. |
| 6 | Add the - (id) bottomContentView; method to your controller class and make it return the reference to your custom view. |