Jump to content

AnotherLurker

Senior Member
  • Posts

    1,093
  • Joined

  • Last visited

Everything posted by AnotherLurker

  1. You need to add the MediaRemote Private framework in your Makefile; ProjectName_PRIVATE_FRAMEWORKS = MediaRemote
  2. Yea, dpkg no longer allows lzma (as xz is much better), but that's an issue since cydia still depends on lzma So you need to downgrade dpkg to allow lzma, which you can do by running the following code; brew remove dpkg cd /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core git checkout 7a4dabf HOMEBREW_NO_AUTO_UPDATE=1 brew install dpkg git checkout master brew pin dpkg
  3. Let's see this
  4. Did you properly install the latest version of Theos? ldid should already be downloaded for you If you want to reinstall theos, follow the tutorial here; https://iosgods.com/topic/13072-macios-how-to-easily-install-theos-on-any-ios-device-setuptheos/ Otherwise, if you just want to fix this issue, run the following command; brew install ldid
  5. [[self loadSpecifiersFromPlistName:@"FasterCharging" target:self] retain]; to [self loadSpecifiersFromPlistName:@"FasterCharging" target:self];
  6. In your PreferenceBundle.m file, you can add an implementation for the -viewDidLoad method For example: - (void)viewDidLoad { [super viewDidLoad]; UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil]; [alertView show]; }
    1. Show previous comments  7 more
    2. Rook

      Rook

      Android is not any better. If anything, might be worse

    3. Zahir

      Zahir 

      Agreed, it tends to get slower as the time passes and its not user-friendly for me. Lags a lot (4GB Ram bruh) and basically sucks

    4. Rook
    5. ___Aaki___
  7. Let's see this
  8. Add a } at the end of the Tweak.xm
  9. Your Objective-C method format is wrong, the code-snippet I posted corrected it for you
  10. It's actually: - (returnType)methodName:(typeName)variable1 argument1:(typeName)variable2; Your Example: - (void)calculateAreaForRectangleWithLength:(CGfloat)length andBreadth:(CGfloat)breadth;
  11. The error means that you have run out of space on your root partition. CoolStar's stashing tweak, available on his repo (https://coolstar.org/publicrepo) as "Stashing for iOS 9.2 – 9.3.3", might fix the issue, even on iOS 9.0.2
  12. Thought you were announcing that you would be leaving iOSGods
  13. Reinstall Theos using setuptheos I sense you're using an older version of Theos
  14. Where's Senior Member?
  15. @@Gav1474 %hook UBTripAddressesView -(void)setDropoffAddressText:(id)arg1 isEnabled:(bool)arg2 { %orig(arg1, TRUE); } %end
  16. %hook UBTripAddressesViewController -(bool)_allowsAddressesViewController { return TRUE; } %end %hook UBTripAddressesView -(bool)shouldDisplayDropoff { return TRUE; } %end %hook UBSecondaryDispatchView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBSecondaryDispatchDefaultAcceptView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBTripAddressesView -(bool)shouldDisplayPickup { return FALSE; } %end %hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end %hook UBTripAddressesView -(void)setDropoffAddressText(id)arg1 isEnabled:(bool)arg2 { %orig(arg1, TRUE); } %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end
  17. %hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end %hook UBTripAddressesView -(void)setDropoffAddressText(id)arg1 isEnabled:(bool)arg2 { %orig(arg1, TRUE); } %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(arg1, TRUE); } %end
  18. @@Klepto
  19. Yea, just realized If it's just pass-through, you should just remove the methods from your hooks. if it's that necessary to include the methods, just do: return %orig();
  20. It's not Theos, Theos just executes the Logos preprocessor which converts %hook code into actual C/C++ code that is then compiled by Clang.
×
  • 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