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

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 = [[UIAlertView alloc] initWithTitle:@"testApp"…
Raj
  • 1,213
  • 2
  • 16
  • 34
0
votes
1 answer

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: /var/theos/include/Twitter/Twitter.h:7:36: error:…
No Name
  • 116
  • 7
0
votes
1 answer

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 'com.apple.product-type.library.dynamic', but there's no such product type…
brojones
  • 61
  • 3
0
votes
1 answer

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 but it is failing to compile. I have all the…
iHackerMe
  • 581
  • 2
  • 5
  • 17
0
votes
0 answers

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 in my makefile ld shows me an error about not…
iHackerMe
  • 581
  • 2
  • 5
  • 17
0
votes
2 answers

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 work. I think that the NSNotificationCenter can…
Piosa
  • 1
  • 1
0
votes
1 answer

UIApplication and _powerDown method...Where?

i saw on github a project where the developer used the method _powerDown to powerOff the iPhone or relaunchSpringBoard to respring it.The line of code is this: [[UIApplication SharedApplication]_powerDown]; but i was searching this method on the…
0
votes
1 answer

Can I use NSString inside system("");?

I am currently working on a tweak where the user writes the argument of a command (e.g. sbalert from sbutils) via a preference bundle. I am able to save it to an NSString but not able to use it as the argument of the sbalert command. Is this…
iHackerMe
  • 581
  • 2
  • 5
  • 17
0
votes
1 answer

Rotating a view in objective-c

I am trying to make the multitasking switcher open in landscape mode all the time... even when the phone is being held in portrait... Any ideas? The class is "SBAppSwitcherController" and I'm calling the method "viewDidAppear"
Sirex_iOS
  • 1
  • 1
0
votes
1 answer

How to add icon to SpringBoard with tweak

I would like to make an iOS tweak, which ads an icon to SpringBoard, but I can't find any solution. I found IconSupport, but I never used it, and I can't find any sample or open source project for it. Can anybody help?
Rickye
  • 1,023
  • 1
  • 9
  • 16
0
votes
1 answer

Hide shadow of SBBulletinBlurredShadowLabel with theos

I want to hide the blurred shadow of a SBBulletinBlurredShadowLabel (Private Framework) by hooking it with theos. SBBulletinBlurredShadowLabel.h: #import "UILabel.h" @interface SBBulletinBlurredShadowLabel : UILabel { } - (struct…
0
votes
1 answer

How to make a Mobile Substrate tweak (Slide from top) Notification Center

I'm a whited00r developer and i'm creating an tweak for iPhone 2g/3g WHITED00r users a notification system (NS) ive already made one (NSCENTER) but it isnt really an tweak... I want to make a mobile substrate tweak that if you slide from top it…
DyZee
  • 43
  • 3
0
votes
1 answer

How to add boolean string to plist with theos tweak?

Well i need to create a tweak that adds for example boolean string test in /var/mobile/test.plist in dict dictionary with
Tolik49
  • 1
  • 1
0
votes
1 answer

iphone goes in to infinity respring loop after uninstalling tweak

I wrote a tweak called Dual Time, it displays second clock on the lock screen. Everything works fine, but on one phone (iPhone 4) after uninstalling tweak something goes wrong and the phone goes into infinity respring loop. After hard reset, phone…
ZigDanis
  • 154
  • 1
  • 11
0
votes
1 answer

Url login on Moodle

I would like to make it possible to redirect users from a site to my Moodle installation, providing two encrypted parameters in the url. Based on these parameter, Moodle should authenticate the users and grant or refuse access. Is anyone familiar…
Paul Maclean
  • 631
  • 4
  • 14
  • 31
1 2 3
18
19