-
Posts
1,300 -
Joined
-
Last visited
Posts posted by KingRalph
-
-
Wat is this?
-
To everyone using this, I suggest you use this tool. The tool on this page is no longer under active development
-
also how do I make a uialert
in my tweak.xm should i put import the UiKit and import foundation that's what shmoo was telling me if so what is the exact code of both
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!
-
well good news is I fixed the problem but now I have a new problem when I tried make package it worked but a new error oh boyyyy having so much luck ****ing theos is so good lol will post a picture
here is the picture https://imgur.com/a/OhNiH
Add the following code to the top of your makefile:
ARCHS = arm64 armv7 TARGET = iphone:clang:8.1
-
I used that tool I did a setup all
What were the results? Did it work?
-
Not getting mad at anyone here but now I'm getting ****ing pissed now I tried moving stuff around in my tweak.xm of course ****ing didn't work screw the ****ing project I'm about to have someone I trust that can compile it
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.
-
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!
-
Install the latest iOS SDK to your device
-
My brother will love this
-
I'll try
it got detected
I dunno what to suggest at this point...
-
>missing a single header file
>reinstall all of theos
There's an option to reinstall just the headers...and it doesn't take more than 2 minutes...
-
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
-
-
it seems that I am missing this header file and I don't know where I should get it.Tweak.xm:2:9: fatal error: 'writeData.h' file not found#import "writeData.h"Any help?
Reinstall your theos headers with this
-
Who is OP?
OP is short form for the original poster. (That means you)
-
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
-
Fix with other Theos, but other error...
There's a file missing from your SDK.
Install the iOS 9 SDK
-
I liked the second one. Nice work!
-
Just use flex 2
-
This. I need this.
-
Run the command $THEOS/bin/nic.pl and got this output:
can't load '/usr/local/lib/per15/5.14.4/arm-iphoneos-21e en /usr/local/lib/per15/5.14.4/arm-ihoneos-21evel/a to/Fentl/Fentl.bundle 1 : no suitable image found. Di /usr/local/lib/per15/5.14.4/arm-iphoneos-21ev el/ s.0x0022E000 size.0x00001000 segment. DATA in segment I nt:map() mapping /usr/local/lib/perl5/5.14.4/arm-iphoneos /level /auto/Fcntl/Fcntl.bundle:mmap line 7 . at /usr/local/lib/per15/5.14.4/arm-iphoneos-21evel/Fcntl. Compilation failed in re• ire at /usr/local/lib/per15 /5.14.4/arm-iphoneos-21evel/POSIX.pm line 13. BEGIN failed nom er15/5.14.4/arm-iphoneos-21evel/POSIX.pm line 19. compilation aborted at /var/THEOS/bin/nic.pl line 16
Your theos is probably broken.
You can reinstall it with this tool I made.
-
So I installed you setuptheos deb file and I installed. All went good. I reinstalled my sdk. I checked everything to make sure it was fine. I cd'd into my project and ran make package install and got that error. But I think as I discussed with mitosis, it is because I'm on an arm64 device. Im not sure though.
Hmmm...
Why don't you try the "setupAll" option?
-
When I make package install it says:
make: xcode-select: Command not found
What did you do. Be VERY specific.
-
Basically what I said
You didn't tell him where to enter the code. If he ran it in terminal, the variable would basically disappear after he logged off.
How to fix GDB not working on iOS 9+ [ALL DEVICES]
in Tutorials
Posted
Interesting...