I’m developing a navigation-base application with 11 buttons on the main page.
If I keep repeating clicking a button and going back to the main page, the application is terminated without any error message.
Does anyone know why?
I’m developing a navigation-base application with 11 buttons on the main page. If I
Share
At a guess, if you need to do something over and over again to produce a crash, it’s probably a memory leak.
Each time you reproduce an action, you’ll leak a small amount of memory, until eventually the device runs out and your application crashes.
Check you’re releasing your objects properly.