Questions tagged [tweak]

A tweak refers to a customization of a software application intended to facilitate its integration within the host system.

References

285 questions
0
votes
1 answer

Sensu plugin's tune to send perf data to Graphite via amqp

I'm trying to tweak a perf-data+value-check plugin (I mean, one that checks some warning-critical values AND collects perf-data) to send this perf-data to Graphite via amqp. This was done in metrics plugin (metric_vmstat.rb) but I still cannot see…
marianogg9
  • 184
  • 1
  • 13
0
votes
1 answer

Operator '<' cannot be used with a left hand side of

I have been debugging this for some time but even though I knew what to do, I don't know what kind of code to put this is the error message that I always recieve Assets/scripts/JavaScripts/PerformanceTweak.js(220,32): BCE0051: Operator '<' cannot be…
0
votes
0 answers

How to put a big UIView on above every window of each app and SpringBoard in iOS on jailbroken device?

I want to put a UIView at the top most of the screen to catch the touch events, I mean the UIView is not in my app, but also in other apps even SpringBoard.Can anyone give a help?Thank you!
Suge
  • 2,808
  • 3
  • 48
  • 79
0
votes
2 answers

Mobilesubstrate: Create a tweak to hook into another tweak or dylib

Is it possible to create a tweak to hook into another existing tweak?
Kmd
  • 337
  • 2
  • 5
  • 18
0
votes
0 answers

How to write GUI in the tweak program of iOS?

Wen can write the GUI of app with nib,storyboard,or code in the common legal project that can be summitted to the AppStore.But in the tweak of iOS open development, usually we write the .xm code to hook or do anything else to implement some…
Suge
  • 2,808
  • 3
  • 48
  • 79
0
votes
2 answers

Is there a way to see what variables are declared inside of a method?

Im making a tweak in theos, and need to see the names of some variables. Say a method looks like this: - (UILabel*)makeALabel { UILabel *name_that_i_want = [[UILabel alloc] init]; [name_that_i_want setText:@"abcdefg"]; return…
user2272641
  • 131
  • 1
  • 3
  • 16
0
votes
1 answer

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 subproject using the template in its directory. I'd…
Andy Ibanez
  • 12,104
  • 9
  • 65
  • 100
0
votes
2 answers

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 when clicked. However, I need to substitute that…
0
votes
1 answer

Reading BOOL Value from Preference Bundle

I am trying to read the BOOL Value from a PSSwitchCell but the BOOL is just coming up true all the time. This is my code (logo tweak (iOSopendev)) This is the .xm file, im using the iosopendev logos tweak template and the simple preference loader. …
0
votes
1 answer

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 code). How can I display a view if I don't have a…
0
votes
1 answer

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... Compiling main.m... Compiling…
avs
  • 65
  • 8
0
votes
2 answers

Theos preference loader + tweak error

I am making a cydia tweak with a preference bundle using theos in my iPhone But I'm getting this error! This is the code I have in: PSListController (I have no idea where is the error in my code. The code is too long to paste here. I made a link to…
junyi00
  • 792
  • 3
  • 8
  • 28
0
votes
1 answer

How to hook protocol method using CaptainHook

I did find a example for doing this using Theos Logos: https://github.com/DHowett/theos-logos-examples/blob/master/logos.uiapplicationdelegate/Tweak.xm But I'd like to know how to do it using CaptainHook. Thank you!
user1920855
0
votes
1 answer

Theos preferences error

I have a problem with my tweak, actually the settings part. When I "make package install" it gives me a couple dozens of errors connected to Preferences. in Tweak.xm there is #import by default is added. The headers that I've found in the web for…
AlexanderZ
  • 2,128
  • 3
  • 20
  • 24
0
votes
0 answers

debugging captainhook tweak

I'm working on a tweak using captainhook. I did something like: [self.delegate somemessage]; //the message is a private api. I don't know its implementation detail. and then the app used up a lot of system resources and got killed minutes…
user1920855