gpt4 book ai didi

iphone - 这个针对 Cydia 的 Tweak 有什么问题?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:50:51 25 4
gpt4 key购买 nike

我为 cydia 写了一个调整,但它似乎不起作用。我使用 Theos 创建了模板。我从 iosod 工具 得到了一个 header 转储,并找到了

`$` - (void)searchBarTextDidBeginEditing:(id)searchBarText;

SBSearchController 类中。这是我在 Tweak 中的代码。

%hook SBSearchController

- (void)searchBarTextDidBeginEditing:(id)searchBarText{ %orig;

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Tweak"
message:@"Testing is running!"
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
[alert release];`

}

%end

我的 Makefile 看起来像这样

include theos/makefiles/common.mk  

Testing_FRAMEWORKS = UIKit

TWEAK_NAME = Testing

Testing_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk \

一切都能正确编译和安装,但在运行时,当我点击搜索栏并开始输入时,没有任何反应。有人知道我做错了什么吗?

谢谢!

最佳答案

请记住,由于这是一个委托(delegate)方法,除非委托(delegate)类实现该方法,否则不会调用它。您是否在处理此事件的应用程序上对此进行了测试?

尝试向文件中添加一些日志记录,以便您可以查看是否正在调用您的代码。

关于iphone - 这个针对 Cydia 的 Tweak 有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11027045/

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