hi,all
Here I met with such a problem:
I create a thread to calculate something and then send a msg to main thread to create some UI for the result. but currently, it takes some time to create so that when I click some other button it responds very slow. because they are in the same thread.
I want to devide them, part of creating UI and response of key event into diff threads. How can I do? I did some test, creating UI is only accepted in main thread, I can't move it to another, or else it would cause a exception...
thx