gpt4 book ai didi

ios - 使用 Theos 将 UIButton 添加到 iPhone/iPad 上的应用程序 ViewController

转载 作者:行者123 更新时间:2023-11-29 12:48:43 25 4
gpt4 key购买 nike

好吧,我有一个想法,可以为 iPhone 调整 MobileSubstrate。

在这个想法中,我想向 MobileSMS.app ViewController 添加一个按钮,以便在应用程序打开时显示该按钮。

如果有人可以帮助编码,我们将不胜感激。

此外,如果有一种方法可以使用 Theos 来实现,那就太好了。

谢谢

最佳答案

MobileSMS.app 使用私有(private)框架 ChatKit。所以

要获取 UIButton,您必须以编程方式创建检查下面的代码

#import <UIKit/UIKit.h>

@interface CKConversationListController : UIViewController
- (void)loadView;
@end

%hook CKConversationListController

- (void)loadView {
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
// now you can customize it for your own ;)
[self.view addSubview:button]; // looks like CKConversationListController subclass of UIViewcontroller ;)
%orig;
}

%end

然后不要忘记在您的 MakeFile 中将 ChatKit 链接为 XXX_PRIVATE_FRAMEWORKS = ChatKit

祝你好运;)

关于ios - 使用 Theos 将 UIButton 添加到 iPhone/iPad 上的应用程序 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22976366/

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