#import <UIKit/UIAlertView.h>
@class NSObject;
@interface SBIconController : NSObject
+ (SBIconController *)sharedInstance;
- (BOOL)isEditing;
@end
%hook SBIconController
-(void)iconTapped:(id)tapped {
SBIconController *sbic = [objc_getClass("SBIconController") sharedInstance];
if ([sbic isEditing]) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Message" message:[NSString stringWithFormat:@"%@", tapped] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];
}
%orig;
}
%end
上面是我用Logos创建的简单调整。由于某些原因安装后,没有任何工作,我只是无法弄清楚问题是什么,我怎么能解决这个问题?
我的其他问题是:
SBIconController
课程时声明类似SBIconController
的课程?NSObject
?[SBIconController sharedInstance]
而不是[objc_getClass("SBIconController") sharedInstance]
时只输入SBIconController?非常感谢你的帮助!
答案 0 :(得分:1)
代码很好。我测试了它(我不使用徽标),当您点击应用图标时,确实调用了iconTapped:
方法。但是你想用isEditing
做什么?此属性指示您是否正在编辑SpringBoard(点按并按住应用程序图标),当它等于YES
时,在点击图标时不会调用方法iconTapped:
。仅在isEditing
等于NO
时才会调用它。因此,我建议您在没有if ([sbic isEditing])
的情况下插入警报来测试您的调整是否有效。
至于你的其他问题:
SBIconController
。要解决此问题,我们可以使用各种工具(如class-dump)下载其他人转储的标头,也可以自己声明这些私有API。在你的情况下,它是后者。SBIconController
继承自NSObject
。你可以这样做。当然,当您有课程声明时,您不需要使用objc_getClass
。在你的情况下,你甚至不需要这些东西。您可以像使用任何其他obj-C方法一样使用self
。您的代码将如下所示:
%hook SBIconController
-(void)iconTapped:(id)tapped {
if ([self isEditing]) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Message" message:[NSString stringWithFormat:@"%@", tapped] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];
}
%orig;
}
%end