This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--> | |
<authentication mode="Windows" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook SBIconImageContainerView | |
@interface SBIconImageContainerView : UIView | |
@end | |
-(void)addSubview:(UIView *)view{ | |
Class _icon = objc_getClass("UIImageView"); | |
if( [view isKindOfClass:_icon] ) | |
{ | |
[view setCenter:CGPointMake(self.bounds.size.width/2,view.bounds.origin.y)]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*%hook SBIconImageContainerView | |
@interface SBIconImageContainerView : UIView | |
@end | |
-(void)addSubview:(UIView *)view{ | |
//Class _icon = objc_getClass("SBIconBadgeImage"); | |
Class _icon = objc_getClass("UIImageView"); | |
if( [view isKindOfClass:_icon] ) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dec 18 22:48:25 unknown voiced[395] <Notice>: MS:Notice: Installing: (null) [voiced] (690.10) | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ | |
Dec 18 22:48:25 unknown SpringBoard[381] <Warning>: __________________________ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook SBIconView | |
@interface SBIconView : UIView | |
@end | |
-(void)updateBadge{ | |
%orig; | |
UIImageView *v = MSHookIvar<UIImageView *>(self, "_badgeView"); | |
[v setCenter:CGPointMake(self.bounds.size.width/2,self.bounds.origin.y)]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This header is generated by class-dump-z 0.2b. | |
* | |
* Source: (null) | |
*/ | |
#import "SBIconObserver.h" | |
#import "SpringBoard-Structs.h" | |
//#import <XXUnknownSuperclass.h> // Unknown library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook SBIconBadgeImage | |
@interface SBIconBadgeImage | |
@property(readonly, copy) NSString* text; | |
@end | |
-(id)initWithCGImage:(CGImageRef)cgimage scale:(float)scale orientation:(int)orientation text:(id)text{ | |
NSDictionary *d = [[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.jontelang.boover.plist"]; | |
float s = [[d valueForKey:@"scale"] floatValue]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook UIView | |
-(void)drawRect:(CGRect)rect{ | |
NSLog(@" - - - -- - - -- - - -- - - - -- - - - - %@", self); | |
self.layer.borderWidth = 2.0f; | |
%orig; | |
} | |
%end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook UIView | |
-(void)drawRect:(CGRect)rect{ | |
NSLog(@" - - - -- - - -- - - -- - - - -- - - - - %@", self); | |
self.layer.borderWidth = 2.0f; | |
%orig; | |
} | |
%end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface aclass : NSObject{ | |
-(void)talk; | |
} | |
@end |
OlderNewer