-
-
Save jontelang/5018934 to your computer and use it in GitHub Desktop.
Tweak
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
include theos/makefiles/common.mk | |
TWEAK_NAME = DebugTools | |
DebugTools_FILES = Tweak.xm | |
DebugTools_FRAMEWORKS = UIKit CoreGraphics QuartzCore | |
include $(THEOS_MAKE_PATH)/tweak.mk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment