BLOGS

MORE ISSUSES

To prevent “freezing” in general you’ll want to look into multi-threading. What’s happening is all of your code, both the UI rendering and the file I/O, is happening in the same thread. So one can’t do anything until the other one is completed. Read more…