亲手打造IconTool插件

最近ios13.1.3可以越狱了,就把手机越狱了,却发现可用的插件少的可怜,对于开发来讲好多东西都不方便,比如查看BundleID,找到app的bundle目录,找到沙盒目录,好麻烦。之前的IconTool还失效了,一气之下就写了一个自用的IconTool。
要想操作logo就要先找SpringBoard进程,然后用cy动态注入(iOS13 cy用不了,只能用cyrun辅助启动,大佬的东西就是好用)。
先大致了解一下当前页面结构

UIApp.keyWindow.recursiveDescription().toString ()

瞬间太多内容,找到一个可疑的:SBIconView随便找一个,SetHidden:YES试一下,果然有一个隐藏了,那就是他了。
找到SBIconView的头文件,有touchesBegan和touchesEnded方法,先实现捕捉logo上滑的操作。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{
    %orig;
    UITouch *touch = [touches anyObject];
    gestureStartPoint= [touch locationInView:[(UIView *)self superview]];//开始触摸
}


-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
    %orig;
    UITouch *touch = [touches anyObject];
    
    CGPoint currentPosition = [touch locationInView:[(UIView *)self superview]];
    
    CGFloat deltaX = (gestureStartPoint.x - currentPosition.x);
    
    CGFloat deltaY = gestureStartPoint.y - currentPosition.y;
    
    float MINDISTANCE = sqrt(deltaX * deltaX + deltaY * deltaY)/2; 
    if(fabs(deltaY) > fabs(deltaX))
    {
        if (deltaY > MINDISTANCE)
        {
            [self handleSwipeFrom];
        }      
    }
}

上滑之后弹出UIAlertController,先定下目标,一个一个实现,有copyBundleID,修改App的名字,修改角标,在Filza跳转到app的Bundle路径,跳转到沙盒路径

-(void)handleSwipeFrom
{
    NSString * bundleID = [[self icon] applicationBundleID];
    id app = [[self icon] application];
    if (bundleID)
    {
        currentVC = [self getCurrentVC];
        UIAlertController *alertController = [UIAlertController alertControllerWithTitle:bundleID message:nil preferredStyle: UIAlertControllerStyleActionSheet];
        UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        UIAlertAction *archiveAction = [UIAlertAction actionWithTitle:@"复制BundleID" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            UIPasteboard * pastboard = [UIPasteboard generalPasteboard];
            pastboard.string = bundleID;
        }];
        UIAlertAction *ReNameIcon = [UIAlertAction actionWithTitle:@"图标重命名" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            [self iconRenameWithBundleID:bundleID onTheApp:app];
        }];


        UIAlertAction *setBadgeAction = [UIAlertAction actionWithTitle:@"自定义角标" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            [self myBadgeNumberOnTheApp:app];
        }];
        UIAlertAction *getBundleAction = [UIAlertAction actionWithTitle:@"在Filza中打开(App)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSString * bundlePath = [(NSURL *)[self applicationBundleURL] path];
            [self jumpToApp:bundlePath];
        }];
        UIAlertAction *getSandBoxAction = [UIAlertAction actionWithTitle:@"在Filza中打开(Data)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSString * homePath = [(NSURL *)[[app info] dataContainerURL] path];
            [self jumpToApp:homePath];
        }];

        [alertController addAction:cancelAction];
        [alertController addAction:archiveAction];
        [alertController addAction:ReNameIcon];
        [alertController addAction:setBadgeAction];
        [alertController addAction:getBundleAction];
        [alertController addAction:getSandBoxAction];
        [currentVC presentViewController:alertController animated:YES completion:nil];
    }
}

功能一:获取BundleID

在dump出的SBIconView.h文件中发现,有个icon 属性比较可疑,就在cy中去运行一下得到另一个类:SBApplicationIcon,查看这个类的头文件就发现另一个很重要的信息applicationBundleID,cy尝试一下,果然可以。还意外的发现了一个application属性,得到了当前的程序SBApplication。第一个顺利解决!!!

功能二:图标重命名

在SBIconView.h文件中搜索Label,果然有一个方法

-(void)labelView;

尝试一下得到SBIconLegibilityLabelView,此类中有一个imageParameters,得到SBIconLabelImageParameters,再往下找有个text属性,找到了。那我们开始,但是要替换,必须要搞一个文件保存,就借鉴一下之前的老版的IconTool的方法,以bundleID为键,以输入的文本为值,保存在plist文件中。然后刷新UI,在加载的时候hook加载的方法,更改特定的程序名称为新值。
下一步找加载的方法,找了好多displayname,都是readonly,无法修改,那就直接hook,找到当前的程序类SBApplication,hook该类的方法:
-(id)displayName;

上代码

-(void)iconRenameWithBundleID:(NSString *)bundleID onTheApp:(id)app
{
    SBIconLegibilityLabelView * labelView = [self labelView];
    SBIconLabelImageParameters * Parameters = [labelView imageParameters];
    NSString *title = [NSString stringWithFormat:@"%@ 图标重命名",Parameters.text];
    UIAlertController *ReNameAlertVC = [UIAlertController alertControllerWithTitle:title message:@"请输入新的名称" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction* actionDefault = [UIAlertAction actionWithTitle:@"更改" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //保存数据
        NewIconName = [ReNameAlertVC.textFields firstObject].text;
        NSMutableDictionary * dic = [NSMutableDictionary dictionaryWithContentsOfFile:@kSettingsFilePath];
        if (dic.allKeys>0)
        {
            [dic setObject:NewIconName forKey:bundleID];
            [dic writeToFile:@kSettingsFilePath atomically:YES];
        }else
        {
            NSMutableDictionary * dic1 = [[NSMutableDictionary alloc]init];
            [dic1 setObject:NewIconName forKey:bundleID];
            [dic1 writeToFile:@kSettingsFilePath atomically:YES];
        }
                
        //刷新UI,借用更改角标来刷新UI;
        id str = [app badgeValue];
        [app setBadgeValue:0];
        [app setBadgeValue:str];
    }];

    UIAlertAction* recoverDefault = [UIAlertAction actionWithTitle:@"恢复" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        NSMutableDictionary * dic = [NSMutableDictionary dictionaryWithContentsOfFile:@kSettingsFilePath];
        if (dic.allKeys>0)
        {
            if ([dic.allKeys containsObject:bundleID])
            {
                [dic removeObjectForKey:bundleID];
                [dic writeToFile:@kSettingsFilePath atomically:YES];
            }
        }      
        //刷新UI,借用更改角标来刷新UI;
        id str = [app badgeValue];
        [app setBadgeValue:0];
        [app setBadgeValue:str];
    }]; 

    UIAlertAction* actionCancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
    [ReNameAlertVC addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

    }];

    [ReNameAlertVC addAction:actionDefault];
    [ReNameAlertVC addAction:recoverDefault];
    [ReNameAlertVC addAction:actionCancel];
    [currentVC presentViewController:ReNameAlertVC animated:YES completion:nil];
}

%hook SBApplication
- (id)displayName{
    NSMutableDictionary * dic = [NSMutableDictionary dictionaryWithContentsOfFile:@kSettingsFilePath];
    if (dic.allKeys>0)
    {
       for (int i = 0; i < dic.allKeys.count; i++)
       {
           if ([self.bundleIdentifier isEqualToString:dic.allKeys[i]])
           {
               return [dic objectForKey:dic.allKeys[i]];
           }
       }
    }
    return %orig;
}
%end

第二个功能完工。

功能三:修改角标

这个比较简单,因为我在找修改name的时候发现了SBApplication类中有个方法:-(void)setBadgeValue;正中下怀。

-(void)myBadgeNumberOnTheApp:(id)app
{
    SBIconLegibilityLabelView * labelView = [self labelView];
    SBIconLabelImageParameters * Parameters = [labelView imageParameters];
    NSString *title = [NSString stringWithFormat:@"%@ 设定角标",Parameters.text];
    UIAlertController *badgeAlertVC = [UIAlertController alertControllerWithTitle:title message:@"请输入新的角标" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction* actionDefault = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        id number = [badgeAlertVC.textFields firstObject].text;
        [app setBadgeValue:number];
    }];
            
    UIAlertAction* actionCancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
    [badgeAlertVC addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

    }];
    [badgeAlertVC addAction:actionDefault];
    [badgeAlertVC addAction:actionCancel];
    [currentVC presentViewController:badgeAlertVC animated:YES completion:nil];
}

功能四五:跳转到Filza中对应的bundle位置和沙盒位置

先通过SBApplication找到程序的信息
其中最初的SBIconView有一个方法
-(id)applicationBundleURL;
刚好可以得到bundle地址。
至于沙盒路径通过SBApplication的info属性得到SBApplicationInfo类,SBApplicationInfo类找到
-(id)dataContainerURL;
分析完毕。

UIAlertAction *getBundleAction = [UIAlertAction actionWithTitle:@"在Filza中打开(App)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSString * bundlePath = [(NSURL *)[self applicationBundleURL] path];
            [self jumpToApp:bundlePath];
        }];
        UIAlertAction *getSandBoxAction = [UIAlertAction actionWithTitle:@"在Filza中打开(Data)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSString * homePath = [(NSURL *)[[app info] dataContainerURL] path];
            [self jumpToApp:homePath];
        }];

全部分析完毕,至于代码我发布到了Github,但是现在仅限于iOS13.1.3,没有其他设备不能尝试。。。
https://github.com/GFGWin/IconToolForiOS13.1.3
希望对你们有用!!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,082评论 1 32
  • 工具 class-dump 用来提取已经砸过壳的 app 的头文件 下载地址 http://stevenygard...
    辉g_9274阅读 2,573评论 1 7
  • 2016-2017年是插件化遍地开花的一年,各家大厂都开源了自己的插件化框架、热修复技术,网上也已经有许多介绍和分...
    Geek帆哥阅读 2,789评论 2 9
  • 8.第一个逆向程序 创建tweak工程➜ iOS /opt/theos/bin/nic.pl NIC 2.0 -...
    Flonger阅读 2,939评论 0 1
  • 因果必报是符合自然法规就比如春天把种子埋在地里经过温度阳光雨水的滋润它就发芽开花结果因果必报是需要时间过程不能因为...
    孟现捧阅读 144评论 0 0