- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我必须通过 UIApplicationBackgroundFetchIntervalMinimum
或 UIApplicationBackgroundFetchIntervalNever
吗?
或者是否可以传递自定义间隔,例如 10 分钟:
UIApplication.sharedApplication().setMinimumBackgroundFetchInterval(600.0)
在我的应用程序中,我必须在应用程序处于后台时下载一些新的更新数据。
然后我将使用新数据向用户发送本地通知。
最佳答案
我查阅了 api 并发现了这个:
func setMinimumBackgroundFetchInterval(_ minimumBackgroundFetchInterval: NSTimeInterval)
还有一个提示:
The minimum number of seconds that must elapse before another background fetch can be initiated. This value is advisory only and does not indicate the exact amount of time expected between fetch operations.
所以我认为你最好不要依赖那个时间间隔。
关于ios - 将特定的 NSTimeInterval 传递给 setMinimumBackgroundFetchInterval 是一种好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38003843/
我开发了一个使用后台获取的应用程序。我将更新之间的最小间隔设置为最小值: [[UIApplication sharedApplication] setMinimumBackgroundFetchInt
我必须通过 UIApplicationBackgroundFetchIntervalMinimum 或 UIApplicationBackgroundFetchIntervalNever 吗? 或者是
我是一名优秀的程序员,十分优秀!