Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Everything posted by KingRalph

  1. Post a screenshot of the error
  2. To everyone using this, I suggest you use this tool. The tool on this page is no longer under active development
  3. Your makefile will look something like this: ARCHS = arm64 armv7 TARGET = iphone:clang:8.1 include theos/makefiles/common.mk TWEAK_NAME = XXX XXX_FILES = Tweak.xm XXX_FRAMEWORKS = UIKit include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" Don't forget to replace XXX with the name of your tweak!
  4. Add the following code to the top of your makefile: ARCHS = arm64 armv7 TARGET = iphone:clang:8.1
  5. What were the results? Did it work?
  6. It's alright fam, I've been there before. Just keep persevering, and you will find a solution. Ps. I made a tool that will (hopefully) fix your errors.
  7. Just updated setuptheos for Mac. Will release an update for the iOS version soon. ^_^

  8. New Update for the Mac version! version 1.1.0 - Setuptheos now supports the latest build of theos, and the NIC templates from iOSGods were updated. Also, no more SDK option for setuptheos! (You don't need it on OS X) I'm currently working on a new version of setuptheos for iOS, coming soon!
  9. Install the latest iOS SDK to your device
  10. I'm BACK!!

    1. Diversityy

      Diversityy

      Welcome back!

    2. KingRalph

      KingRalph

      Thanks bruh. Gonna start actively developing tweaks, and posting here again.

  11. I dunno what to suggest at this point...
  12. There's an option to reinstall just the headers...and it doesn't take more than 2 minutes...
  13. I re-coded the tweak. Decided to hook the GADViewController class function instead hooking of the instance variable. Here is the updated code: #import <substrate.h> #import <Foundation/Foundation.h> %hook GADBannerView - (void)setFrame:(CGRect)frame { frame = CGRectMake(0,0,0,0); %orig(frame); } %end
  14. Reinstall your theos headers with this
  15. OP is short form for the original poster. (That means you)
  16. I'm trying to modify the properties of an instance variable, so I decided to hook the variable inside the init function (because init is called first). Can someone please review my code? I feel like I'm missing something. %hook RootViewController - (id)init { // Hook the instance variable for the ad's view adsView = MSHookIvar<UIView *>(self, "_bannerViewContainer"); // Hide the ad's UIView adsView.hidden = YES; return %orig; } %end
  17. There's a file missing from your SDK. Install the iOS 9 SDK
  18. I liked the second one. Nice work!
  19. Just use flex 2
  20. Your theos is probably broken. You can reinstall it with this tool I made.
×
  • 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