Re: another Core Data and Undo Question

2010-12-10 Thread Jerry Krinock
On 2010 Dec 07, at 17:14, kvic...@pobox.com wrote: > i have a core data app … i have setGroupsByEvent set to NO Wow, I've found that setGroupsByEvent:NO generally causes all hell to break loose with Core Data – many warnings printed to Console, and exceptions raised. I've made it a rule to ne

Re: another Core Data and Undo Question

2010-12-07 Thread Kyle Sluder
On Tue, Dec 7, 2010 at 5:14 PM, kvic...@pobox.com wrote: > i have a core data app that supports both real time events and user > interaction. some of the user interactions can generate an undo stack > similar to the following: > > beginUndoGroup >        beginUndoGroup >        core data action >

another Core Data and Undo Question

2010-12-07 Thread kvic...@pobox.com
i have a core data app that supports both real time events and user interaction. some of the user interactions can generate an undo stack similar to the following: beginUndoGroup beginUndoGroup core data action core data action endUndoGroup myAction endUndoGroup