I am building a dynamic form in a Cocoa application and am planning to use the NSForm object to add entries to it from an array.
Some of the entries require a text input, but some require a boolean input (i.e. a dropdown list), and some even require a file input (i.e. a place to upload an image or a movie or sound file).
It seems that an NSFormCell is only equipped to handle text. My question is: Should I subclass NSFormCell and if so, what would be the best way to do this? Are there any better ways to do this?
Thank you for any help you can offer!