Comments on: How To Create MobileSubstrate Tweaks for iOS. https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/ Teaching you cool stuff since 2012. Fri, 21 Jun 2019 10:32:11 +0000 hourly 1 https://wordpress.org/?v=4.9.10 By: Startup guide to Jailbroken iOS Development – Fidele https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-1516 Thu, 07 Jul 2016 07:56:12 +0000 http://andyibanez.com/?p=105#comment-1516 […] How to create MobileSubstrate tweaks for iOS by Andrés Ibañez […]

]]>
By: cocoyaojun https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-1503 Fri, 03 Jun 2016 09:05:17 +0000 http://andyibanez.com/?p=105#comment-1503 Making all for tweak tewak1…
make[2]: Nothing to be done for `internal-library-compile’.
usage: dirname path
usage: mkdir [-pv] [-m mode] directory …
touch: 3/tewak1/.theos/fakeroot: No such file or directory
rm: /Users/yaojun/Desktop/twak: is a directory
Making stage for tweak tewak1…
make: *** [internal-package] Error 2
yaojun:tewak1 yaojun$

when I input ‘make package install’,then……

what can I do? Please give me some tips!Thanks!

]]>
By: Robert Peterson https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-1101 Sat, 06 Feb 2016 16:53:30 +0000 http://andyibanez.com/?p=105#comment-1101 OK, so I just tried this and I was so excited because it nearly worked… Unfortunately, I got two errors while doing it in iOS 6. The first is “subprocess dpkg-deb –fsys-tarfile returned error exit status 2”
And the second is “Sub-process /usr/libexec/cydia/cydo returned an error code (1)”
Please help!

]]>
By: Test https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-1050 Fri, 30 Oct 2015 21:17:29 +0000 http://andyibanez.com/?p=105#comment-1050 iOS 9:

@interface SBLeafIcon
	- (void)launchFromLocation:(int)arg1 context:(id)arg2;
	- (id)displayNameForLocation:(int)arg1;
@end
 
%hook SBLeafIcon 
 
- (void)launchFromLocation:(int)arg1 context:(id)arg2
{
    NSString *appName = [self displayNameForLocation:(int)arg1];
    NSString *message = [NSString stringWithFormat:@"The app %@ has been launched!", appName];
    UIAlertView *myAlert = [[UIAlertView alloc]initWithTitle:appName message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [myAlert show];
    [myAlert release];
    
	%orig;
}
 
%end
]]>
By: Pepe https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-605 Thu, 09 Jul 2015 04:47:19 +0000 http://andyibanez.com/?p=105#comment-605 How can I add this delegate method to check which button of the alert view was pressed?
– (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;

And where would I have to add the protocol ?

this is my alert view with two buttons:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:appName message:message delegate:self cancelButtonTitle:@”Cancel” otherButtonTitles:@”Ok”, nil];

]]>
By: akashshinde https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-490 Tue, 21 Apr 2015 12:33:25 +0000 http://andyibanez.com/?p=105#comment-490 Hi i also didn’t got any error but when compiled and installed tweak on my iphone,I restarted iphone but still my tweak was not working ? what do you think which step i am missing?

]]>
By: Andrés Ibañez https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-439 Sun, 08 Mar 2015 17:06:20 +0000 http://andyibanez.com/?p=105#comment-439 Yes, though the template should include the command to respring automatically.

]]>
By: Billy Ellis https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-438 Sun, 08 Mar 2015 11:55:30 +0000 http://andyibanez.com/?p=105#comment-438 I haven’t got any errors, but once after I’ve built and installed the tweak, it just doesn’t work. Do I need to respring or do something extra? Please reply thanks. 🙂

]]>
By: HoangVuong https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-276 Thu, 25 Sep 2014 15:06:42 +0000 http://andyibanez.com/?p=105#comment-276 Can you tell me how to fix that error plz? thanks a lot

]]>
By: henk https://www.andyibanez.com/create-mobilesubstrate-tweaks-ios/#comment-271 Sat, 20 Sep 2014 19:27:10 +0000 http://andyibanez.com/?p=105#comment-271 Thank you very much really helped me getting started 🙂

]]>