Theos is a cross-platform suite of development tools for managing, developing, and deploying iOS software without the use of Xcode. This tag might also refer to an operating system originally authored in the 1970's.
-1
votes
1answer
23 views
iOS - UIButton does not appear on UIView
This tweak is supposed to cover the lockscreen with a view (which does happen) and add an "iOS" button to the view (which does not). Here's my code:
#import <UIKit/UIKit.h>
#import ...
0
votes
1answer
20 views
THEOS Error llvm-g++-4.2: Invalid arch name : export [closed]
I'm using iOS SDK 6.1 and am trying to make a jailbreak tweak using THEOS. I used the default tweak template (5), created the project, built it, and got an error:
collect2: ld terminated with signal ...
0
votes
1answer
34 views
PreferenceBundle Not Loading Specifiers in Jailbreak (Theos) App
I have been fighting with this bizarre all afternoon long with no results. Before, I was able to just create a Tweak, using Theos' Tweak template, and add a PreferenceBundle to it by creating the ...
-1
votes
0answers
50 views
UIButton and UIView in cydia tweak
In my cydia tweak, I am trying to create a button in an app when it loads.
But I'm always having problems with just a line of the code.
%hook someViewController
-(void)viewDidLoad {
%orig;
...
0
votes
1answer
51 views
Using an unlock bar and making it raise an event?
I am making an iPhone tweak that will place a respring slider below the power off one. I have found the proper class, I have overridden it and I managed to insert a button that resprings the device ...
-1
votes
0answers
42 views
programmin logic to Bring up the user interface on dialing number in jailbreak iphone
I am creating an IOS 6.0 app using Theos,what i need to do is open the interface on dialing some number just like this app.can anyone give me some reference on how can i achieve it.i am new in ios ...
0
votes
0answers
90 views
How can i get the url referrer of a url scheme in theos objective c?
I'm trying to make a theos tweak that will run a system action when a url is called in the browser. Here is my problem. I need to check what url my scheme is sent from. The code below is supposed to ...
0
votes
0answers
23 views
Theos not being installed in ios 6.0
I have used installtheos3 command from mobile terminal as root user to install Theos in my IOS, but not able to see theos folder inside /var directory.It was present before i restarted my device but ...
-1
votes
1answer
40 views
how to use sqlite3 in Theos application
I a trying to create a Theos application in which i need to use sqlite,But i don't know how should i import sqlite3 library like we do in Xcode app.
Below is what i did till now and getting error ...
2
votes
1answer
76 views
Get Application Icon Image From Springboard (Jailbreak)
I'm developing a lockscreen application using theos and part of the functionality requires icon images of certain applications on the phone. How can I go about getting those icon images and displaying ...
0
votes
1answer
33 views
Conditional call of a class inside a Hook block within THEOS/LOGOS
In my THEOS tweak, i'm hooking a class and calling one of its methods successfully.
My problem is that the method name changed following an update to the app i'm tweaking.
In the old version, the ...
0
votes
0answers
44 views
Hooking IVAR in theos error
I have decrypted some header files and this is the header file I would like to hook some ivars from it.
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by ...
0
votes
0answers
46 views
How to include files in Theos makefile?
I made a fully functional tweak with theos and I need to use an image file
in it , the code for getting the image is correct (tested on Xcode) .
but the image isn't included in the final DEB file .
...
0
votes
0answers
9 views
How to set an image into a UIWIndow without it being a pattern image
Hi guys I am making a jailbreak tweak that will display a UIWindow when an anction is called and I want the UIWIndow to display an image. I have got it working and it shows the image but it does it in ...
1
vote
1answer
38 views
Editing NBT in Obj-c
I'm trying to make an app on iOS that edits a .dat file but I'm not entirely sure how to edit it because its in NBT format can someone help me out?
0
votes
0answers
23 views
Is there any way to find the header file you are looking for easily after using class-dump?
I dumped the header files for an app.
It's well over 300 files and cannot find the right one I'm looking for by its name.
Is there any way gdb or something to debug a running iOS app and find the ...
-1
votes
1answer
104 views
creating an iOSOpenDev application and a tweak in the same package [closed]
I've spent three days looking how to create (using iOSOpenDev) one package (.deb) containing an application and a tweak at the same time and I could not find anything.
It is possible to do this?
1
vote
0answers
25 views
Issue with class-dump-z “Fail to map * into memory”
I'm using the latest class-dump-z available.
Followed this video: https://www.youtube.com/watch?v=HjFeYk_1HH4
iPhone-Pieter:~/dump root# cat class_info
/*
An exception was thrown while analyzing ...
0
votes
0answers
59 views
How to run an action is a theos tweak via a URL SCHEME
I have a tweak I just made in theos today. I want to be able to have the tweak run certain actions when i open a url like appname:// in my browser. How can I do this? Thanks!
0
votes
0answers
16 views
CKLazyTextView Theos Tweak
I want to try and modify CKLazyTextView using theos. I found some source code for CKLazyTextView on github and placed in under /opt/theos/include/ChatKit/ but when I go to 'make' it won't work? Any ...
0
votes
1answer
47 views
Importing Classes in Theos Tweak
I want to be able to create instances of other objects in my tweak. So basically I currently have something like
%hook MyView
-(id)myClass {
id class = %orig;
return class;
}
%end
What I want ...
1
vote
1answer
35 views
Reading string with NSDictionary iPhone
I was wondering how i can build an app that reads text / strings from settings .
Yes this is only for jailbroken devices . And yes i know i cant put it to the appstore .
I already know how to do it ...
1
vote
0answers
120 views
Can MSHookFunction hook C functions like open,fopen or write?
For various reasons, I need to hook these functions, especially open. so I wrote this code in theos to test:
#import <CoreFoundation/CoreFoundation.h>
#include <substrate.h>
static int ...
1
vote
1answer
48 views
How to Display an image through a NSBundle
I am trying to display a image when my method is activated. I have all the code down and I dont get any errors but the image just wont show.
Here is my Tweak.xm file.
#import <UIKit/UIKit.h>
...
1
vote
1answer
55 views
UIImage may not respond to imageWithContentsofFile
Hi guys I am trying to make a image appear whenever my method is called.
Here is my code
#import <UIKit/UIKit.h>
#import <substrate.h>
#import <Foundation/Foundation.h>
#import ...
2
votes
1answer
178 views
Unable to create Directory outside the sandbox for THEOS Tweak
I'm making an iPhone tweak using THEOS which hooks to Google Chrome App.
Part of the tweak functions, is to handle downloading and saving files using ASIHTTPRequest/ASINetworkQueue.
The user can ...
2
votes
2answers
135 views
Enable ARC for theos build system
I'm currently using the theos build system to write applications and tweaks for jailbroken iPhones. Is there a way for me to enable automatic reference counting for specific projects with theos?
I've ...
0
votes
0answers
37 views
Multiple errors in Theos while compiling a mobilesubstrate tweak with preferences
I'm getting compiling errors while compiling a tweak with a preferences bundle on the iPad with Theos. I think the main one is it can't find the "Preferences/Prefences.h" header.
My problem is ...
1
vote
1answer
251 views
WeeApp iOS Notification Center Widget: Location Services doesn't save permissions (jailbreak)
I'm making a Notification Center for jailbroken iPhones using the theos templates (so it runs on WeeApp). It's a weather widget, and I want it to be able to get the phone's current location so it can ...
0
votes
0answers
239 views
Theos and Simulator - can I develop cydia tweak and test on a IOS Simulator
I have found some great tutorials of how to install Theos to develop jailbroken apps/tweaks: http://iphonedevwiki.net/index.php/Theos/Getting_Started
The problem is, I only have 1 iphone (iphone 5) ...
1
vote
1answer
155 views
Theos fails to compile tweak after adding preference bundle
I am trying to add a preference bundle to a tweak I am building. I followed the part of this tutorial where they add the preference bundle. After I tried adding the preference bundle, my tweak fails ...
-2
votes
1answer
100 views
id object in theos mobilesubstrate tweak , i can't disable this -(id)
-(id)initWithUserSettings:(id)userSettings mqttSender:(id)sender;
NSDictionary *settings3=[[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/myfilehere.plist"];
...
0
votes
2answers
91 views
MacPorts Install dpkg Errors
Update:
sudo port selfupdate did not return any errors. This was the output:
---> Updating MacPorts base sources using rsync
MacPorts base version 2.1.3 installed,
MacPorts base version 2.1.3 ...
0
votes
0answers
70 views
Intercept the postNotification method on a Jailbreak device using theos
Is it possibile to intercept the postNotification method on a Jailbreak device?
if is possible I want alto to limit it to a specific app.
0
votes
0answers
73 views
Theos compilation errors iOS6
I just dumped my iOS6 headers, and on the first compile I get this error:
_ABAddressBookCopyLocalizedLabel.h: No such file or directory
Right now, my code doesn't even do anything, just trying ...
0
votes
0answers
54 views
Theos package version error when making tweak
I am trying to compile a tweak with a preference bundle in it
But for some reason, running make gave me this problem.
It shows me this error:
/var/theos/bin/package_version.sh: line 56: let: 1.0: ...
1
vote
1answer
213 views
How to use the value in PSLinkListCell in preference bundle?
I would like to make a preference bundle for my jailbreak tweak.
I successfully made a preference bundle with a switch that works.
But I would like a setting to choose color.
Example:
Blue ...
0
votes
0answers
235 views
Theos/Logos and hooking IVar's
I am starting to get into iOS jailbreak development, as well as Theos/Logos. Currently, I know how to hook a header, and change things like int, void, bool and floats (the basic stuff).
But I want to ...
1
vote
2answers
283 views
iOS Jailbreak Development (THEOS/Logos) - Calling a function from another Class (%hook)
This should be simple to answer (I hope?).
Note: This code is not an exact replica of the original code, but illustrates (with good accuracy) what my problem is, and what my intentions with the code ...
0
votes
2answers
168 views
Theos make: *** [internal-install] Error 1
i will start developing jailbreak tweaks. I started with this tutorial:
http://brandontreb.com/beginning-jailbroken-ios-development-building-and-deployment/
i get the following error with this ...
0
votes
0answers
100 views
Displaying a UIView in a MobileSubstrate tweak?
I am making an iOS MobileSubstrate Tweak and I have hooked Springboard and the launch() method. Now I want to display a view with a button and if it is clicked it would call the %orig (the original ...
0
votes
1answer
91 views
(WeeLoader) 'UITapGestureRecognizer' was not declared in this scope
I know that when the error is "'blah' was not declared in this scope" means when the object was not created correctly, but when I am making a Notification Center widget for iOS, using the WeeLoader ...
1
vote
1answer
100 views
Theos replace a method call with another in the same class - Jailbreak required
Good Night :)
I want to replace a method call that's my class
Player
-(BOOL)checkDone:(NSString*)name;
-(BOOL)checkWrong:(NSString*)name;
I'm tryng to do
%hook Player
...
0
votes
1answer
100 views
theos error “alertView was not declared in this scope”
I am making a tweak which changes some things in a game.
I am trying to hook with OpenMenu to make it display an alert asking if The user want to change revert the game back to normal or if the user ...
0
votes
0answers
129 views
Developing iOS jailbreak application With theos
Lewis:helloworld lewis$ make
Making all for bundle HelloWorld...
Copying resource directories into the bundle wrapper...
Compiling HelloWorldController.m...
Linking bundle ...
0
votes
1answer
223 views
Trying to learn iPhone Tweak Dev, unknown Theos error on 'make' command
This is what comes up in terminal. Any advice? I've done the advice in this thread: Error compiling tweak in theos yet it didn't help.
Copying resource directories into the application wrapper...
...
0
votes
0answers
25 views
MacPorts is not installing
I am getting error while installing macports using this command
sudo port install dpkg
Error: -bash: port: command not found
I am installing theos (ref ...
0
votes
1answer
192 views
‘MSHookIvar’ was not declared in this scope
i am trying to get a ivar, using MSHookIvar but i get this error : "‘MSHookIvar’ was not declared in this scope " . i tried to compile it in my iphone, and from mac, but in both say i have this ...
0
votes
1answer
133 views
Importing <AppKit/AppKit.h> does not work
I am making a cydia tweak on Xcode using IOSOpenDev and i tried to import <AppKit/AppKit.h> but i'm getting this error!
'AppKit/AppKit.h' file not found'
This is my code which changes the flash ...
0
votes
0answers
108 views
Segmentation fault: 11 when trying to add AVCaptureSession and AVCaptureVideoPreviewLayer (Jailbreak/Theos)
I'm making a tweak for jailbroken iphone (with theos) that has some extra settings for the messages app, one of them is to replace the background of your conversation to the camera view. This is my ...
