zoukankan      html  css  js  c++  java
  • ios应运程序的五种状态

    ios应运程序的五种状态即转化  从apple的官方文档扣下来的

    5状态:

    Not running

    The app has not been launched or was running but was terminated by the system.

    Inactive

    The app is running in the foreground but is currently not receiving events. (It may be executing other code though.) An app usually stays in this state only briefly as it transitions to a different state.

    Active

    The app is running in the foreground and is receiving events. This is the normal mode for foreground apps.

    Background

    The app is in the background and executing code. Most apps enter this state briefly on their way to being suspended. However, an app that requests extra execution time may remain in this state for a period of time. In addition, an app being launched directly into the background enters this state instead of the inactive state. For information about how to execute code while in the background, see “Background Execution and Multitasking.”

    Suspended

    The app is in the background but is not executing code. The system moves apps to this state automatically and does not notify them before doing so. While suspended, an app remains in memory but does not execute any code.

    When a low-memory condition occurs, the system may purge suspended apps without notice to make more space for the foreground app.

    5状态的转化图:

  • 相关阅读:
    学习笔记2-查看目录文件
    学习笔记1-基本信息及相关目录
    【图论】二分图最大匹配
    【图论】Dinic算法
    【图论】最小割
    【数据结构】左偏树
    【数学】欧拉定理
    【数据结构】ST表
    【数学】博弈模型
    【字符串】后缀数组
  • 原文地址:https://www.cnblogs.com/cxbblog/p/3779156.html
Copyright © 2011-2022 走看看