欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取iOS应用信息

程序员文章站 2024-03-20 17:06:46
...

由于苹果的限制,在未越狱的 iOS 设备中只能通过私有 api 来获取安装应用列表和所有的 url scheme,在 ios 中可以用获取到的 scheme 来打开对应 app

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@“weixin”]];
  • 1
  • 1

也可以获取 bundle id 后通过私有 api 来完成。

1、 iOS 私有 api 的使用

获取 iOS 的私有 api 列表可以自己写个 method browser 或直接查看 https://github.com/nst/iOS-Runtime-Headers, 这里是我们需要使用的 api 所在文件

注意,并不是每个 api 都可以使用,苹果的限制是越来越严的。

然后便是私有 api 的使用,这里介绍一种方法,比如我要使用 LSApplicationWorkspace 中的 allInstalledApplications 方法来获取所有安装程序,首先申明

@interface PrivateApi_LSApplicationWorkspace
- (NSArray*)allInstalledApplications;
@end
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

学过c的应该能很好的理解,接着便是在某个地方进行初使化

PrivateApi_LSApplicationWorkspace* _workspace;
_workspace = [NSClassFromString(@"LSApplicationWorkspace") new];
  • 1
  • 2
  • 1
  • 2

然后便可以调用了

NSArray* allInstalledApplications = [_workspace allInstalledApplications];
  • 1
  • 1

2、获取所有安装程序极其信息

@interface PrivateApi_LSApplicationProxy

+ (instancetype)applicationProxyForIdentifier:(NSString*)identifier;
@property (nonatomic, readonly) NSString* localizedShortName;
@property (nonatomic, readonly) NSString* localizedName;
@property (nonatomic, readonly) NSString* bundleIdentifier;
@property (nonatomic, readonly) NSArray* appTags;

@property (nonatomic, readonly) NSString *applicationDSID;
@property (nonatomic, readonly) NSString *applicationIdentifier;
@property (nonatomic, readonly) NSString *applicationType;
@property (nonatomic, readonly) NSNumber *dynamicDiskUsage;

@property (nonatomic, readonly) NSArray *groupIdentifiers;
@property (nonatomic, readonly) NSNumber *itemID;
@property (nonatomic, readonly) NSString *itemName;
@property (nonatomic, readonly) NSString *minimumSystemVersion;
@property (nonatomic, readonly) NSArray *requiredDeviceCapabilities;
@property (nonatomic, readonly) NSString *roleIdentifier;
@property (nonatomic, readonly) NSString *sdkVersion;
@property (nonatomic, readonly) NSString *shortVersionString;
@property (nonatomic, readonly) NSString *sourceAppIdentifier;
@property (nonatomic, readonly) NSNumber *staticDiskUsage;
@property (nonatomic, readonly) NSString *teamID;
@property (nonatomic, readonly) NSString *vendorName;

@end

@implementation LMApp
- (BOOL)isHiddenApp
{
      return [[_applicationProxy appTags] indexOfObject:@"hidden"] != NSNotFound;
}

- (id)initWithPrivateProxy:(id)privateProxy
{
    self = [super init];
    if(self != nil)
    {
        _applicationProxy = (PrivateApi_LSApplicationProxy*)privateProxy;
    }

    return self;
}

- (instancetype)initWithBundleIdentifier:(NSString*)bundleIdentifier
{
    self = [super init];
    if(self != nil)
    {
      _applicationProxy = [NSClassFromString(@"LSApplicationProxy") applicationProxyForIdentifier:bundleIdentifier];
    }

    return self;
}

+ (instancetype)appWithPrivateProxy:(id)privateProxy
{
    return [[self alloc] initWithPrivateProxy:privateProxy];
}

+ (instancetype)appWithBundleIdentifier:(NSString*)bundleIdentifier
{
    return [[self alloc] initWithBundleIdentifier:bundleIdentifier];
}
@end

NSArray* allInstalledApplications = [_workspace allInstalledApplications];
NSMutableArray* applications = [NSMutableArray arrayWithCapacity:allInstalledApplications.count];
for(id proxy in allInstalledApplications)
{
      LMApp* app = [LMApp appWithPrivateProxy:proxy];
      if(!app.isHiddenApp)
      {
          [applications addObject:app];
      }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77

于是 applications 便是所有的安装程序,再访问其成员便可知道各应用的额外信息,比如 bundle id 什么的,这里还要特别说明下获取应用图标的方法

@interface UIImage ()
+ (id)_iconForResourceProxy:(id)arg1 variant:(int)arg2 variantsScale:(float)arg3;
+ (id)_applicationIconImageForBundleIdentifier:(id)arg1 format:(int)arg2 scale:(double)arg3;
@end

UIImage* icon = [UIImage _applicationIconImageForBundleIdentifier:@"com.tencent.xin" format:10 scale:2.0]; //微信图标
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

获取iOS应用信息 
获取iOS应用信息

3、打开对应bundle id 的应用

与上面类似,调用相应私有 api 便可

[_workspace openApplicationWithBundleID:@"com.tencent.xin"]; // 打开微信
  • 1
  • 1

获取iOS应用信息

4、查看所有 url schemes

出于某些原因,可能我们想要知道某些 app 有 url scheme,在这里只能列出所有的 url scheme 然后猜测是哪个应用的,或者可以写个程序配置好相应 info.plist 直接在程序中用 openURL 方式打开对应 应用

- (NSArray*)privateURLSchemes
{
    return [_workspace privateURLSchemes];
}

- (NSArray*)publicURLSchemes
{
    return [_workspace publicURLSchemes];
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

获取iOS应用信息

完整代码可查看 https://github.com/wujianguo/iOSAppsInfo