开发者

My app not geting terminated after pressing the home button

i am developing a ebook reader and i am facing the following issue. if i close the app and reopen , then it opens e开发者_JAVA百科xactly in the same state as it used to be before closing. I suspect this may lead to a lot memory leaks. Is this the right way for the app to function? and will this behavior cause any memory leaks?? can anyone help me with this... I dint know what title to put on top.. Please apologize me if the title was misleading.. thank you.


This is the expected behavior. After the introduction of iOS4, applications will keep their state between launches. Applications get terminated when the system is running low on memory, as the system terminates applications not recently used to free memory. This will not lead to memory leaks. For users running iOS3 pressing Home will terminate the application.

See Understanding an Application’s States and Transitions and Multitasking for more information.


right appropriate code in delegate file

-(void)applicationDidEnterBackground:(UIApplication *)application
{//exit(0);
}

if nothing works write exit(0) in this method.


You can add the BOOL key: "Application does not run in background" to your info.plist and set it to YES. Then your app should be terminated when you press the home button.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜