Jump to content

AnotherLurker

Senior Member
  • Posts

    1,093
  • Joined

  • Last visited

4 Followers

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

AnotherLurker's Achievements

Newbie

Newbie (1/14)

  • Very Popular
  • Popular

Recent Badges

1.5k

Reputation

  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
×
  • 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