开发者

How run my application in background in iphone?

开发者 https://www.devze.com 2023-03-22 21:02 出处:网络
I want to know how to run myapplicatio开发者_JAVA技巧n background in iphone ?Background processing is available for certain specific purposes. I\'m not sure that yours is one of the allowed background

I want to know how to run my applicatio开发者_JAVA技巧n background in iphone ?


Background processing is available for certain specific purposes. I'm not sure that yours is one of the allowed background tasks, but you can read about it in the Application Programming Guide.


You need to include the UIApplicationDelegates

- (void)applicationWillResignActive:(UIApplication*)application
- (void)applicationDidEnterBackground:(UIApplication*)application
- (void)applicationWillEnterForeground:(UIApplication*)application
- (void)applicationDidBecomeActive:(UIApplication*)application
0

精彩评论

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