The tweak tag has no wiki summary.
-1
votes
1answer
21 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 ...
-3
votes
1answer
46 views
How to read iOS (and how many)notifications?
Okay since my question got closed i'll go more in depth, i'm writing a tweak that /reads/ if there's any notifications and if there is it /tells/ you with a sound or custom vibrate pattern.
Question ...
0
votes
1answer
32 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
49 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
0answers
16 views
Using PostNotification on settings plist - iosopendev - WeeApp Widget
I am trying to get my Weeapp widget to have a settings bundle with PSSwitches which changes some labels.hidden value, etc. I am using PostNotification label in the left hand column of my plist file as ...
0
votes
1answer
49 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
vote
0answers
68 views
iOS - Launching “Photos” app through tweak?
I want to launch "Photos" application (the stock apple one) through a jailbreak tweak. I have hooked the springboard, overridden the methods I need and now I need to launch the "Photos" app. My ...
-6
votes
3answers
82 views
Programmaticly remove ALL installed apps on the ios-device [closed]
Does anybody know how to remove ALL from the user installed apps?
Or is there maybe a great tweak for this?
Would appreciate any help. Thanks.
0
votes
0answers
57 views
How to use presentViewController when using iOSOpenDev develop ActionMenu Plugin?
i want to present UIActivityViewController by ActionMenu,as you know,presentViewController is a method of UIViewController,but the root class of an ActionMenu Project is UIResponder.So how can i make ...
0
votes
1answer
49 views
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 ...
1
vote
1answer
81 views
Preference Bundle PSLinkListCell change image
Im trying to write the code for my preference bundle which i added by ticking the 'preference bundle' box when creating my notification center widget on Xcode (iOSOpenDev). I have a PSLinkListCell ...
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 ...
2
votes
1answer
231 views
Any Good iOSOpenDev Sample Code/Reference Materials? [closed]
I've had some experience developing iOS apps and I'm currently working on an idea I had for a Cydia tweak. The tweak would work with action menus, adding a new button to the menu and presenting an ...
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
98 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
0answers
141 views
LockScreen Notifications Blocked By CustomView
I'm Developing a tweak which added a full screen custom UIView to SBAwayView by using-addSubview:. On iOS 5.x, it works fine and notifications and bulletin tableview shows normally. On iOS6.x, ...
0
votes
1answer
222 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...
...
1
vote
0answers
74 views
CTCall callState method “unrecognized”
I'm working on a jailbreak tweak where I need to detect an incoming call. I can successfully get the CTCall object however, when I call callState to get the current state it throws up this error and ...
2
votes
3answers
294 views
kill application from other application on ios 6 using void kill dont work
i got jailbreak iphone ios 6
in my tweak on ios 4&5 I used (void) kill to close other app running in the background.
this is my code:
#import "SBApplication.h"
SBApplication *app ;
app = ...
0
votes
0answers
134 views
Cydia Tweak plist editing
Ok I got what I need for this tweak but on my iPhone and iPad I see:
"There was an error loading the preference bundle for Callify(NAME OF MY TWEAK)"
This is the CalliFy.plist:
<?xml ...
0
votes
0answers
221 views
create clock for notification center
I build tweak clock to notification center with iOSOpenDev.
The clock no update on notification center and he stuck on the time when you on the iphone.
for example:the time is 17:43 i'ts not refresh ...
3
votes
2answers
367 views
iOS Private API: lock device and power off the screen
I'm making an app for jailbreak that lock the device when the user launch the app. I've tried GSEventLockDevice(); from GraphicsServices.framework but this does not work properly because it locks the ...
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 ...
-1
votes
2answers
150 views
Undeclared identifier “UIColor” in my tweak in Objective C
I am trying to make a tweak in Xcode with IOSOpenDev, but i met an error which is Use of undeclared identifier "UIColor"!
I used the same code from my iPhone yet it works, why doesn't it work here? (I ...
0
votes
1answer
285 views
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 ...
0
votes
1answer
226 views
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 ...
0
votes
1answer
724 views
How to make a preference bundle for my mobile substrate tweak?
I have theos, sdk3 installed in my iPhone
I have created a working tweak too but have no idea how to create a preference bundle to add some settings.
I want A Yes/No or a BOOL button to be added ...
1
vote
1answer
353 views
.dylib mobile substrate tweaks not working
I was learning about making mobile substrate tweak when i came across a tutorial with a source codes in it. To further understand it, i decided to test it out
The codes:
%hook SBApplicationIcon
...
2
votes
2answers
170 views
theos libxml2: No such file or directory
I'm use theos write a tweak and need use libxml2. I had add LDFLAGS like this:
widget_INSTALL_PATH = /Library/WeeLoader/Plugins/
widget_FRAMEWORKS = UIKit CoreGraphics
widget_LDFLAGS = -lxml2
the ...
0
votes
1answer
248 views
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 ...
1
vote
1answer
172 views
Simulate Mouseclick-Events on a jailbroken device via cycript
I'm interested in the iOS-Tweak "MouseSupport" Source Code (Repo) from Matthias Ringwald. Does anybody know how to use it?
I would like to simulate Mouseclick-Events while being hooked up at ...
1
vote
0answers
53 views
How do I refresh the preference pane in a tweak for jailbroken iPhone?
I have a button in the preference panel of my tweak that returns the settings to their default values (specifically there are 'PSEditTextCell's that are cleared). The button triggers an action that ...
0
votes
0answers
133 views
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 ...
1
vote
1answer
262 views
theos springboard
Does anyone have this experience?
I just follow the http://brandontreb.com/beginning-jailbroken-ios-development-your-first-tweak/, however every make command ends up like: no ...
0
votes
0answers
43 views
I want to see every file associated in the exe program I installed but I dunno how to do it? I mean every piece of the file
I have a program called netimo cafe manager it is a cyber cafe manager that allows you to control the client PC it has a blue background with netimo logo on the client PC, but I am bored looking at ...
2
votes
3answers
588 views
Which method from wich header is called when making a phone call in iOS?
I'm developing a tweak through logos template from ios open dev, but I've been looking around all header files in existing frameworks and I'm not finding the correct header which have method that's ...
-1
votes
1answer
577 views
Replace Keyboard with Custom keyboard for iOS via theos tweak [closed]
I want to replace any iOS international Keyboard with my custom keyboard just like PictoKeyboard
if you have any idea or any link regarding this please share with me.
Any help will be highly ...
1
vote
1answer
223 views
Unable to hooking UITextfield Class via theos
I want to develop simple tweak for hooking uitextfield or uitextview. My have code as below
%hook UITextView
-(id)initWithFrame:(CGRect)frame webView:(id)view
{
UIAlertView *keyAlert = ...
1
vote
2answers
323 views
Subtracting pixels from TOP and LEFT values in a jQuery script
I'd like to tweak this Masonry plugin to always subtract 1 pixel from the TOP and LEFT css values on each "brick."
(function(a, b, c) {
"use strict";
var d = b.event,
e;
...
1
vote
1answer
302 views
Theos Hooking an AppDelegate I make some errors
That's my code... I have some errors... Can you help me?
@interface PdfViewerAppDelegate : UIViewController
@property(assign) BOOL myVariable;
-(void)setup;
@end
%hook PdfViewerAppDelegate
...
0
votes
1answer
287 views
missing ios 5 Headers giving theos errors
So yeah heres the error code when compiling from my ipad via theos
Making all for bundle iNotitweet...
Compiling iNotitweetController.m...
In file included from iNotitweetController.m:2:
...
0
votes
1answer
158 views
how can i execute theos tweak on jailbreak device?
i am a new comer for tweak development, as per different tutorial now i have little bit idea of theos but facing so much problems while creating tweaks for iphone, right now i am following
...
0
votes
1answer
216 views
iosopendev logo tweak build error
I have just created a logos tweak using iOSOpenDev without making any changes to anything. I am getting this error whenever I try to build:
target specifies product type ...
2
votes
1answer
218 views
Error compiling iPhone tweak
I am trying to compile a iPhone tweak I just created and I am getting some errors I can not seem to find a solution for and help would be appreciated.
Undefined symbols for architecture armv6:
...
1
vote
2answers
172 views
A way to send low memory warning to app on iPhone
I'm looking for some tool/app/tweak that can generate low memory warning on iPhone (jailbroken). Or, as alternative variant - tweak that simulates high memory usage.
I need it to test my app behavior ...
0
votes
0answers
311 views
Does adding lines to build.prop do anything if those properties don't already exist?
I've been checking current property settings against a build.prop I'm considering using via getprop command in adb shell...
Several of the new settings return no value when I run getprop...so will ...
0
votes
1answer
541 views
What is wrong with this tweak?
I tried to compile a tweak using theos, an amazing framework to create tweaks easily on many different platform. Here I am trying to show a settings icon every time I respring and slowly fade it out ...
0
votes
0answers
201 views
How to use the iOS 5 SDK with Theos
I recently wanted to make a tweak which uses the iOS 5 Twitter framework so I got the headers from my Xcode.app and pasted them in /opt/theos/include/Twitter/
However when I add Twitter as a framework ...
0
votes
2answers
147 views
how to post notification in Logos Tweak
I used the iOSOpenDev to create a Logos Tweak to hook the acknowledgeIncomingMessageWithId: of CTMessageCenter and I want to send notification by NSNotificationCenter to another app, but it doesn't ...