Skip navigation.
 
mlRe: To Document-Base or not Document-Base...
FROM : Alex Rice
DATE : Fri Jan 03 18:52:15 2003

On Friday, January 3, 2003, at 08:02  AM, mw wrote:

> So, the final question is: should I create my project as a
> document-based
> app in PB, or should I just have a normal application.


If the user is going to be creating, naming and saving sessions,
configurations, profiles, whatever then yes, use NSDocument project.

Or If the app is going to allow multiple copies of the same window to
be open, then use NSDocument project. The DocumentController will
handle the creation and maintenance of the multiple windows using your
NSDocument subclass. It does not necessarily have to save out to a
"document" on disk.

If the user is not going to be creating, naming and saving sessions,
configurations, profiles, whatever, and you don't need multiple
windows, then don't use a NSDocument project- it might just get in your
way.


  Alex Rice <<email_removed>> | Mindlube Software  |
http://mindlube.com

  what a waste of thumbs that are opposable
  to make machines that are disposable  Ani DiFranco
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
mlTo Document-Base or not Document-Base... mw Jan 3, 16:02
mlRe: To Document-Base or not Document-Base... Mike Ferris Jan 3, 18:28
mlRe: To Document-Base or not Document-Base... mw Jan 3, 18:43
mlRe: To Document-Base or not Document-Base... Alex Rice Jan 3, 18:52
mlRe: To Document-Base or not Document-Base... Chris Hanson Jan 3, 22:41
mlRe: To Document-Base or not Document-Base... mw Jan 4, 14:41