-
Posts
193 -
Joined
-
Last visited
Everything posted by dzcracker
-
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Thank you so much -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
I did -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
All? -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
http://i.imgur.com/y1UQXTq.jpg Got this error DIDA please just make litle tuto!! -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Yes The first one got broken when i tryed to make heaxer image -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Yes Kuz the first one is brokn i dont know why -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
export ARCHS = armv7 arm64 export TARGET = iphone:clang:7.1:7.1 include theos/makefiles/common.mk BUNDLE_NAME = SBMultiFunction SBMultiFunction_FILES = SBMultiFunction.mm SBMultiFunction_INSTALL_PATH = /Library/PreferenceBundles SBMultiFunction_FRAMEWORKS = UIKit SBMultiFunction_PRIVATE_FRAMEWORKS = Preferences include $(THEOS_MAKE_PATH)/bundle.mk internal-stage:: $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/SBMultiFunction.plist$(ECHO_END) -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Kuz i copyed it And i dont know wr include PFheaderCell.mm -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
export ARCHS = armv7 arm64 export TARGET = iphone:clang:7.1:7.1 include theos/makefiles/common.mk BUNDLE_NAME = MegaRunHack MegaRunHack_FILES = MegaRunHack.mm MegaRunHack_INSTALL_PATH = /Library/PreferenceBundles MegaRunHack_FRAMEWORKS = UIKit MegaRunHack_PRIVATE_FRAMEWORKS = Preferences include $(THEOS_MAKE_PATH)/bundle.mk internal-stage:: $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/MegaRunHack.plist$(ECHO_END) -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Still geterror ???? -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Get this error http://i.imgur.com/GKRpkYD.jpg Missing seperator in makefile Dida please can u put in my makefile tht i post it? -
Help/Support How to add a header image to my preference bundle?
dzcracker replied to dzcracker's topic in Help & Support
Thank you so much boss I will try now Where should i add PFHeaderCel.mm? export ARCHS = armv7 arm64 export TARGET = iphone:clang:7.1:7.1 include theos/makefiles/common.mk BUNDLE_NAME = MegaRunHack MegaRunHack_FILES = MegaRunHack.mm MegaRunHack_INSTALL_PATH = /Library/PreferenceBundles MegaRunHack_FRAMEWORKS = UIKit MegaRunHack_PRIVATE_FRAMEWORKS = Preferences include $(THEOS_MAKE_PATH)/bundle.mk internal-stage:: $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/MegaRunHack.plist$(ECHO_END) This is my makefile -
Good
-
Good
-
Its worked castix lol NSLog worked with -(voi) I get -(void)setDisplayLayout:(id)fp8 Not -(id)displayLayout and i make it like tht Its work now thanks man %hook SBAppSwitcherPageViewController -(void)setDisplayLayouts:(id)fp8 { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k@"] boolValue]){ %orig(fp8); fp8 = nil; } [prefs release]; return %orig; } -(BOOL)isScrolling { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k@"] boolValue]){ return TRUE; } [prefs release]; return %orig; } -(void)handleReachabilityModeDeactivated { NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:kPath]; %orig; if([[prefs objectForKey:@"k@"] boolValue]){ NSLog(@"Test !"); %orig; ; } [prefs release]; return %orig; } %end