My plugin crashes Interface Builder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T15:56:14Z http://stackoverflow.com/feeds/question/876218 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876218/my-plugin-crashes-interface-builder 0 My plugin crashes Interface Builder Sean Rich 2009-05-18T04:06:08Z 2009-08-04T07:28:59Z <p>I built a custom control and an IB plugin for it. If I run the plugin using IB as a custom executable from the plugin project everything works like a champ. But if I copy the framework and plugin to the "normal places", create a test app for it, and run the simulator - IB crashes after it returns from the simulator. I've scoured the web and the docs, but I can't find anything on these methods. Any idea what I'm missing? (by the way, the framework is in /Library/Frameworks, and the plugin is in /Developer/Platforms/MacOSX.platform/Developer/Library/Interface Builder/Plugins). Here's the stack from IB's crash report:</p> <p>Assertion Message: No object for "IBResizeActionInitialFrame" key. </p> <p>Backtrace:<br /> 0. Interface Builder 0x00004d29 [IBApplication handleAssertion:inFile:onLine:]<br /> 1. InterfaceBuilderKit 0x002c74ee [IBLibraryController createDetailedDescriptionFromTemplate:]<br /> 2. InterfaceBuilderKit 0x003aad22 [NSView lastResizeAction]<br /> 3. Foundation 0x90b98a7a [NSObject valueForKey:]<br /> 4. Foundation 0x90bc65fa [NSObject valueForKeyPath:]<br /> 5. InterfaceBuilderKit 0x0043cec6 [IBResourceManager document]<br /> 6. InterfaceBuilderKit 0x0043d6f9 [IBResourceManager document:willSynchronizeWithProjectFiles:project:]<br /> 7. InterfaceBuilderKit 0x002dfdae [IBDocument willSynchronizeWithProjectFiles:project:]<br /> 8. InterfaceBuilderKit 0x002df00a [IBDocument beginSyncingWithXcodeIfNeeded]<br /> 9. Foundation 0x90baa22e [NSRunLoop runMode:beforeDate:]<br /> 10. CoreFoundation 0x932d6b25 CFRunLoopRunSpecific<br /> 11. CoreFoundation 0x932d6cd8 CFRunLoopRunInMode<br /> 12. HIToolbox 0x92f622c0 BlockUntilNextEventMatchingListInMode<br /> 13. HIToolbox 0x92f620d9 BlockUntilNextEventMatchingListInMode<br /> 14. HIToolbox 0x92f61f4d BlockUntilNextEventMatchingListInMode<br /> 15. AppKit 0x95229d7d _DPSNextEvent<br /> 16. AppKit 0x95229630 [NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]<br /> 17. Interface Builder 0x0000276b [IBApplication nextEventMatchingMask:untilDate:inMode:dequeue:]<br /> 18. AppKit 0x9522266b [NSApplication run]<br /> 19. AppKit 0x951ef8a4 NSApplicationMain<br /> 20. Interface Builder 0x00004eca [IBApplication changeInspectorMode:] </p> http://stackoverflow.com/questions/876218/my-plugin-crashes-interface-builder/884636#884636 1 Answer by Sean Rich for My plugin crashes Interface Builder Sean Rich 2009-05-19T19:36:32Z 2009-05-19T19:36:32Z <p>Ok, here's the answer to my own question: If you override ibDidAddToDesignableDocument, you must call super. Once I did this, the assertion problem is fixed. Hope this helps someone else.</p> http://stackoverflow.com/questions/876218/my-plugin-crashes-interface-builder/1226104#1226104 0 Answer by ybart for My plugin crashes Interface Builder ybart 2009-08-04T07:28:59Z 2009-08-04T07:28:59Z <p>Thanks for the hint, I had that exception for weeks before reading your post. This seems have fixed my problem.</p>