Re: Exiting program?
Re: Exiting program?
- Subject: Re: Exiting program?
- From: "Stephen Deken" <email@hidden>
- Date: Tue, 31 Oct 2006 14:24:34 -0600
...and here is my problem.
If I delete a row in my view and exit my app with exit(0) this row
appears again when app is started
It appears again because your application did not gracefully exit.
You're looking for the NSApplication method -[terminate:(id)] -- call
it like this:
[NSApp terminate:nil];
That's the equivalent to what happens via the main menu.
Stephen Deken
email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden