简体   繁体   English

如何获得启动在我的iPhone / iPad中安装的其他应用的次数?

[英]How can I access the number of times other apps installed in my iPhone / iPad have been launched?

Does the iOS' internal system keep track what apps have been launched including the number of times they have been launched since they're installed? iOS的内部系统是否跟踪安装了哪些应用程序,包括自安装以来已启动的次数? I want to make an app that lists apps based on how often they're used. 我想制作一个可以根据使用频率列出应用程序的应用程序。

In iOS you can keep track of how many times app launched with method 在iOS中,您可以跟踪使用方法启动应用程序的次数

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions (BOOL)应用程序:(UIApplication *)应用程序didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

in AppDelegate.m file. 在AppDelegate.m文件中。

You can also check how many times application comes into foreground from background via 您还可以通过以下方式检查应用程序从后台进入前台的次数:

  • (void)applicationWillEnterForeground:(UIApplication *)application (void)applicationWillEnterForeground:(UIApplication *)application

in same AppDelegate.m file. 在同一AppDelegate.m文件中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 是否可以记录设备上已安装的任何应用程序启动的次数? - Is there a way to log the number of times ANY installed app on my device has been launched? 对于iPad / iPhone应用程序,如何获得一系列积分? - For iPad / iPhone apps, how to have an array of points? 我可以使用Apple SDK以外的任何其他方式发布iPhone / iPad应用程序吗? - Can I publish iPhone / iPad apps using anything other than the Apple SDK? 如何将我的应用程序添加到 iphone/ipad 的设置中? - How can I add my app to the Settings of the iphone/ipad? 我可以仅使用iPad 2和iPhone开始构建iOS应用吗? - Can I start building iOS apps using only iPad 2 and iPhone? 当我的iPAD上安装了应用程序的'.ipa'文件时,如何获取IOS应用程序的Bundle ID - How to obtain Bundle ID for an IOS App when I have a '.ipa' file for the app installed on my iPAD Iphone 应用程序可以打开其他应用程序吗? 如何 - Iphone App that can open other apps? How 以编程方式如何清除iphone应用程序中的iPhone或iPad数据 - Programmatically How to wipe out iPhone or iPad data in i phone apps Launcher如何获取iPhone的已安装应用程序列表? - How could Launcher get the list of installed apps of my iPhone? 在iPad上运行时无法启动我的iPhone应用程序的启动映像 - Launch Image of my iPhone App cannot be launched while running on iPad
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM