开发者

How to know what apps I install on one iphone

开发者 https://www.devze.com 2023-04-12 15:31 出处:网络
If it possible to know what apps are installed on current device开发者_如何学编程? And get some information, such as install date, size?

If it possible to know what apps are installed on current device开发者_如何学编程? And get some information, such as install date, size?

EDIT: By programming.


All applications that are installed are on the home screen, you can swap between pages. The same thing can be done from iTunes, here you wil probobly find more information about your phone. If you can't find it in iTunes you wont find it anywhere else.

Hope this helps.


You can do it on Mac OS X (like this or this), but not on iOS from what I can tell.

Just a note about the Launch Services solution as well, there's probably a private API call still around to let you do it, since on this page Apple says the following:

In iOS, Launch Services is a private API but is still used internally to coordinate the execution environment of iOS applications.

Something like this:

NSArray *urls;
_LSCopyAllApplicationURLs(&urls);

I'm not sure if that works on iOS. Even if it does, this will never get past App Store Compliance testing.

0

精彩评论

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