On Fri, Jul 25, 2008 at 6:29 PM, JArod Wen <[EMAIL PROTECTED]> wrote: > Since I didn't find any object in the data to be written has the type of > NSViewGState, I am really confused about this error. Anyone can give me any > suggestions?
This is usually a case of failing to retain an object you own. If it gets deallocated underneath your feet, an object of a different class may wind up in the same place in memory, but your old pointers don't know that. Often, because of the way the compiler has generated your code, it's consistently an object of a certain but completely unrelated class. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]
