Questions tagged [theos]

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.

Theos is a cross-platform suite of development tools for managing, developing, and deploying iOS software without the use of Xcode. It is community-driven and managed. One popular way of using it is to patch/modify system or non-system applications, where such modifications are popularly known as tweaks. Tweaks can be used in ways comparable to tools like frida and mobile substrate in jailbroken devices. In fact, Theos uses the capabilities of mobile substrate as the engine powering tweaks, but provides templates, tools and the Logos syntax, to make tweak development more convenient. Theos can be used directly on iOS devices to build tweaks, on or MacOS, e.g., to build the tweaks and package them in .deb packages that can be installed on iOS devices.

409 questions
0
votes
1 answer

How to assign a Url to a PSButtonCell action

Hi guys I have been working on this tweak an for the most part I'm done. The only thing that I have left in mind is to add a donate button to my preference bundle. I have already created a cell with a label and action, I just need to know how to…
0
votes
0 answers

Change "slide to unlock" text color iOS

So, what's the question: I'm trying to change "slide to unlock" text color on lockscreen. I'm using Theos to hook SBAwayLockBar class and -(void)_setLabel:(id)label method. Here's my Tweak.xm: #import %hook…
vanelizarov
  • 1,064
  • 1
  • 8
  • 24
0
votes
1 answer

Upgrading ARM64 support, Theos compiles but doesn't work, ideas?

I created a Cydia Tweak and have been trying to update it for arm64 devices but for some reason my testers report the tweak doesn't work. I've been researching online and figured out adding arm64 support should be as simple as adding arm64 to the…
Carlos Perez
  • 122
  • 2
  • 12
0
votes
1 answer

UIImage Animation Crashes Device

Hi guys I have been trying to develop a cydia that will animate a image inside a UIImageView, and I think that my code is all good but for some reason the app just crashes every time that perform the task. I have read that this could be the cause of…
0
votes
1 answer

SpringBoard header errors when compiling tweaks with theos

I am new to jailbreak tweaks development and I am using theos to develop my tweaks but I ran into some issues when I was compiling my tweak with the make command. Basically I dumped all the IOS 7 SpringBoard headers with class-dump-z and placed all…
0
votes
1 answer

Mobile terminal build app doesnt show on iOS7 springboard

I am coding iOS APP on iPad using mobile terminal and THEOS. I am following this tutorial https://sites.google.com/site/theostutorials/chapter-2-my-first-app/lesson-3-build-and-test I followed all the steps successfully but my app doesnt show on…
Billy Q
  • 71
  • 1
  • 7
0
votes
1 answer

Error in compilation on theos IOS "Id returned 1 exit status"

I would like to compile a Tweak with Theos on my iDevice (iTouch 4G IOS 6.1.3) but I have this error.! Link of image : http://hpics.li/d090438 Help me please !
0
votes
0 answers

How to get battery level from IOKit in iOS 3 SDK using theos?

So, I want to use IOKit to show the battery level as a percentage for iOS 3 SDK using theos, and it compiles correctly, but when it is trying to link some symbols, it says: Linking Application Battery... Undefined symbols: …
Dave1482
  • 3
  • 3
0
votes
2 answers

Add icon to SBSearchTableViewCell

I am trying to add an icon to a SBSearchTableViewCell. I was adding a subview on top of the cell but that still left a border, and the text was underneath the icon. http://i.imgur.com/tGqWaEa.png I tried hooking into -[SBSearchModel…
twodayslate
  • 2,803
  • 3
  • 27
  • 43
0
votes
0 answers

iOS 3+ programming a uiprogressview w/o a nib (I have theos)

I have implemented FlowCover programmatically. On the click of an image in the cover flow, I would like a uiprogressview bar to appear below the image in the cover flow. Here is my current code snippet for the area of concern: - (void)…
Dave1482
  • 3
  • 3
0
votes
2 answers

Why is the Navigation Bar on top of the UIViewWeb? (Beginner in OBJ-C)

I have a small problem. Basically, I have a UIWebView that is located under the navigation bar, so I need to scroll down to view the contents, and it scrolls up at the end. How Do I make the UIWebView appear right below the navigation bar? #import…
Vlad
  • 795
  • 1
  • 12
  • 35
0
votes
1 answer

UIWebView possibly causing my app to crash?

I am making a simple app without Xcode, using Theos on my iPod, and I want the app to just load http://www.google.com/ When I start my app, the screen becomes black, and then crashes after 10 seconds. I believe it has something to do with my use of…
Vlad
  • 795
  • 1
  • 12
  • 35
0
votes
1 answer

Is there a way to set Other Linker flags to Theos Logos Tweak?

Hi Does anyone know how to set -ObjC as Other linker flag for logos tweak? Currently I'm using, MyTest_LDFLAGS = -lsqlite3 -ObjC or MyTest_LDFLAGS = -lsqlite3 -lObjC
prathumca
  • 410
  • 8
  • 25
0
votes
1 answer

MobileSubstrate game hacking on iphone

I am practicing mobilesubstrate hacking on the game Kingdom Age (v2.0) for ipad. I just want to make a ton of in-game money, but I am getting nowhere. The player is defined in a class, CCPlayer and is sometimes server checked. So I am trying to get…
0
votes
2 answers

Theos build fails with : dpkg-deb: subprocess tar -cf returned error exit status 2

Theos is failing to build a package, yet it will 'make' it just fine. It returns the following with messages enabled: dpkg-deb: building package `com.ethanarbuckle.alienblue++' in…
user2272641
  • 131
  • 1
  • 3
  • 16