Hi to all, I have created a music application in iphone . The App crashes if i keep on switching between the tabs while the song is playing. How can i solve this problem .Please anybody help me regarding this problem
A:
A common cause for crashes when something repetitive happens (eg switching between tabs, screens etc) is memory problems. Make sure you are releasing the correct objects in the right place. It could very well be that every switch you are allocating objects - without freeing them when switching again. This will eventually consume your memory and crash the application.
Ivo Jansch
2010-09-18 07:29:13
A:
Generally such kind of issues are memory related.......just check whether ur releasing the objects at proper place or not..
Other u can put some code snippet to have a look so that we can know actually what's happening with your code..
Ajay Sharma
2010-09-18 09:38:49