• 如何让程序在后台保持挂起状态


    如何让程序在后台保持挂起状态

      程序的状态分为:前台运行,后台挂起,后台休眠

    为了让项目的网络请求保持活跃状态,需要对程序进行设置.

    在applicationDidEnterBackground方法中调用下面的方法,可以让程序进入挂起状态,但在未知时间内,可能会被系统设置为休眠,如果在将程序设置为播放器,并且循环播放一个MP3文件,可以保持永久挂起状态.

         UIBackgroundTaskIdentifier task =[application beginBackgroundTaskWithExpirationHandler:^{

             [application endBackgroundTask:task];

        }];

  • 相关阅读:
    SKPhysicsJointPin类
    SKPhysicsJointLimit类
    SKPhysicsJointFixed类
    SKPhysicsJoint类
    SKPhysicsContact类
    SKPhysicsBody类
    SKLabelNode类
    SKNode类
    SKKeyframeSequence类
    Unique Paths II
  • 原文地址:https://www.cnblogs.com/LiLihongqiang/p/6938301.html
Copyright © 2020-2023  润新知