closing a panel in a nib file hangs the application
I have a panel in my nib file that opens on clicking menu item in my application After performing some tasks on the panel , when I close the panel my application hangs . Please suggest me the reason for it and any possib开发者_如何学JAVAle solution. When I used separate nib files for my application and panel ,things worked correctly.
More information needed. But better yet, some debugging techniques so you can figure it out yourself:
- hit "pause" in the debugger - where are you? Look at the backtrace/callchain to see what is going on.
- Have you looked in the console window for any diagnostic messages?
- Set a breakpoint on the code that is called when the close action for the panel is activated and then step through the handling and see how far it gets.
that ought to get you started.
精彩评论