gpt4 book ai didi

ios - Theos 偏好包

转载 作者:行者123 更新时间:2023-11-29 03:02:17 26 4
gpt4 key购买 nike

我是一名业余开发人员,在 Objective-C 中具有一些基本技能。

我做了一些小的基板调整——我最后做的调整是 Facebook 的全屏。现在,我想为我的调整制作一个偏好包。

我在网上阅读了大量指南,但没有任何帮助。我知道我应该在 theos 中创建一个首选项包并修改 plist 然后放入某种代码来引导我的调整进入首选项路径并为切换设置一个条件 - 类似于:

 if ((toggle = enabled )) (activate tweak) else ( return %orig) 

...或者类似的东西。但是,我似乎无法在任何地方找到有关如何完成此操作或我应该满足的条件的示例。

这是我的[代码]:

#import<UIKit/UIKit.h>
%hook UIApplication -
(BOOL)isStatusBarHidden{return TRUE;}%end
%hook UIStatusBar -
(id)styleForRequestedStyle{return nil;}%end
%hook UIStatusBar -
(id)_forgroundStyleForStatusBarStyle{return nil;}%end
%hook UIStatusBar -
(id)_foregroundAlphaForStatusBarStyle{return nil;}%end
%hook UIStatusBar -
(id)initWithFrame:showForegroundView{return nil;}%end

最佳答案

您必须从 plist 文件中获取值。

NSMutableDictionary *settings = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.your.package.plist"];

查看我的 Github 或 insanj 的示例

https://github.com/twodayslate/ https://github.com/insanj/

关于ios - Theos 偏好包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23168089/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com