ios开发中如何获取app列表


ios开发中如何获取app列表 给点提示啊

java ios

一切皆归于无 9 years, 1 month ago

注意⚠️以下方法都不能通过AppStore审核!!

试试这个 https://github.com/profburke/AppLister

还有这个:


 Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace");
    NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspace)];
    NSLog(@"apps: %@", [workspace performSelector:@selector(allApplications)]);

琐琐碎碎2 answered 9 years, 1 month ago

北条沙都子 answered 9 years, 1 month ago

越狱的情况我不清楚。但没越狱的话必然拿不到,苹果对隐私那么重视,怎么会让你拿到。

以前可以通过 URL Scheme 判断有没有安装特定app,但现在iOS9把这个办法也废掉了。

小小小小小纸团 answered 9 years, 1 month ago

Your Answer