Jump to content

Baroto

Senior Member
  • Posts

    128
  • Joined

  • Last visited

Everything posted by Baroto

  1. i have error like this /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/objc/NSObject.h:36:1: note: 'retain' has been explicitly marked unavailable here - (instancetype)retain OBJC_ARC_UNAVAILABLE; ^ FasterCharging.mm:10:83: error: ARC forbids explicit message send of 'retain' ...= [[self loadSpecifiersFromPlistName:@"FasterCharging" target:self] reta... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ 2 errors generated. My mm. ARCHS = armv7 arm64 CFLAGS = -Wno-deprecated -Wno-deprecated-declarations include $(THEOS)/makefiles/common.mk BUNDLE_NAME = FasterCharging FasterCharging_FILES = FasterCharging.mm $(shell find $(THEOS)/include/SCLAlertView -name '*.m') FasterCharging_INSTALL_PATH = /Library/PreferenceBundles FasterCharging_FRAMEWORKS = UIKit FasterCharging_PRIVATE_FRAMEWORKS = Preferences FasterCharging_CFLAGS = -fobjc-arc 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/FasterCharging.plist$(ECHO_END) what can i do?
  2. yes, but I want to implement in my bundle Preference preference when it starts to click my bundle.
  3. I already know when the button is clicked, will pop up alerts, but what I want, when I first entered my bundle preference, immediately pop up. such preference bundlenya mario run in the setting.
  4. how to generate pop-up automatically in the Preference Bundle tweak me?
  5. I like this and unresolved. https://iosgods.com/topic/36339-sclalertview-style-troubleserrors/page-3#entry1385488 Close button does not work.
  6. help me to solve the problem for months?
  7. Help Plist? Help Plist?
  8. May I use the header has Dida? or link suggested? tks Dida
  9. Dida, I managed to implement it I change like this __weak typeof (self) weakSelf = self; with __weak __typeof __ (self) weakSelf = self; in SCLAlertView.m and managed. but when I press the exit button, no response. What is wrong? Tweak.xm : %hook BBMAppDelegate - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. SCLAlertView *alert = [[sCLAlertView alloc] initWithNewWindow]; [alert showSuccess: @"Title here"// Success, Error, Notice, Warning, Info, Edit, Custom, Waiting subTitle: @"Subtitle here" closeButtonTitle: @"Close button" duration: 0.0f]; return %orig; } %end
  10. Social Fans: reports and analytics Itunes Link : https://itunes.apple.com/us/app/social-fans-reports-analytics/id1164407864?mt=8 Feature : -Unlock Social Fans Package 2 (Rp.519.000) -Unlock Social Fans Package 4 (Rp.519.000) -Unlock Social Fans Packa 5 (Rp.89.000) Screenshot DOWNLOAD [Hidden Content]
  11. MOVE TO : Assalamualikum.. Itunes Link : https://itunes.apple.com/us/app/muslim-pro-prayer-times-azan/id388389451?mt=8 Fiture Unlock : -Remove ADS -Additional Voice -Customize my APP Screenshot
  12. hello mr. if you can create a custom alert view when you first open the app. pop up like this https://iosgods.com/topic/27214-how-to-do-sclalertview-in-a-theos-tweak-like-this/. I've tried to apply. but always error https://iosgods.com/topic/36339-sclalertview-style-troubleserrors/#entry1229566
  13. thanks so much for its support..
  14. if you can fix this? %hook BBMCoreAccess -(void) sendTypingNotificationForConversationURI:(id)arg1 isTyping:(bool) { arg1 = FALSE; return %orig; } %end
  15. Tks. here : #include <substrate.h> %hook BBMCoreAccess -(void) sendTypingNotificationForConversationURI:(id)arg1 isTyping:(bool) { arg1 = FALSE; return %orig; } %end %hook BBMCoreAccessGroup -(void) sendTypingNotificationForConversationURI:(id)arg1 { arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(void) markEphemeralMessageAsViewed:(id)arg1 { arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(void) markMessagesRead:(id)arg1 withConversationURI:(id)arg2 { arg2 = NULL; arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(bool) isRateBBMEnabled { return TRUE; } %end %hook BBMCoreAccess -(void) setRateBBMEnabled:(bool)arg1 { arg1 = TRUE; return %orig; } %end %hook BBMCoreAccess -(id) adsEnabled { return NULL; } %end %hook BBMCoreAccess -(id) getAllAds { return NULL; } %end %hook BBMEphemeralMetaData -(double) remainingTime { return FALSE; } %end %hook BBMPingLimitHelper -(bool) isLimitReached { return TRUE; } %end %hook BBMSystemMessageCell -(bool) isRead { return TRUE; } %end %hook BBMSystemMessageCell -(void) setIsRead:(bool)arg1 { arg1 = TRUE; return %orig; } %end %hook BBMMessage -(bool) canBeMarkedRead { return TRUE; } %end %hook BBMMessageCell +(bool) automaticallyNotifiesObserversOfMessage { return TRUE; } %end %hook BBMGenEphemeralMetaData -(bool) isScreenshot { return TRUE; } %end
  16. Thanks. all problems had been solved, now I discovered this. Tweak.xm:4:185: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:4:184: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^
  17. Hello all. I tried to compile tweak like this http://pastebin.com/ZFP6g62e. but I found an error like this Tweak.xm:4:185: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:4:184: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:5:1: error: use of undeclared identifier 'arg2'; did you mean 'arg1'? arg2 = TRUE; ^~~~ arg1 Tweak.xm:4:179: note: 'arg1' declared here ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:5:6: error: assigning to 'id' from incompatible type 'int' arg2 = TRUE; ^ ~~~~ Tweak.xm:12:8: error: expected expression arg1 = ; ^ Tweak.xm:19:8: error: expected expression arg1 = ; ^ Tweak.xm:25:172: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:25:171: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:26:1: error: use of undeclared identifier 'arg2'; did you mean 'arg1'? arg2 = ; ^~~~ arg1 Tweak.xm:25:166: note: 'arg1' declared here ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:26:8: error: expected expression arg2 = ; ^ Tweak.xm:27:8: error: expected expression arg1 = ; ^ Tweak.xm:47:1: error: non-void function '_logos_method$_ungrouped$BBMCoreAccess$adsEnabled' should return a value [-Wreturn-type] return ; ^ Tweak.xm:53:1: error: non-void function '_logos_method$_ungrouped$BBMCoreAccess$getAllAds' should return a value [-Wreturn-type] return ; ^ Tweak.xm:59:1: error: non-void function '_logos_method$_ungrouped$BBMEphemeralMetaData$remainingTime' should return a value [-Wreturn-type] return ; ^ 14 errors generated. make[3]: *** [/users/pxcex/Desktop/Tweak/bbm/.theos/obj/debug/armv7/Tweak.xm.2995620b.o] Error 1 make[2]: *** [/users/pxcex/Desktop/Tweak/bbm/.theos/obj/debug/armv7/bbm.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [bbm.all.tweak.variables] Error 2 whether there is a solution. Thank you very much.
  18. please provide headers for me..
  19. I also several times been viewed 10 error . so, what is the solution?
  20. tks mr shmo. but I still find the same error. . If mr shmoo kindly provide SCLAlertview tutorial style from scratch? Such incredible tweak you. Just SCLAlertview.
  21. if you mean CFLAGS = -w in makefile ?
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines