Comments on: Creating Aggregate Projects on Theos: A Configurable Tweak. https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/ 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/creating-aggregate-projects-theos-configurable-tweak/#comment-1517 Thu, 07 Jul 2016 07:57:23 +0000 http://andyibanez.com/?p=122#comment-1517 […] How to Creating Aggregate Projects on Theos: A Configurable Tweak by Andrés Ibañez […]

]]>
By: Andrés Ibañez https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-288 Mon, 29 Sep 2014 12:58:19 +0000 http://andyibanez.com/?p=122#comment-288 You need to define it in an interface along with the methods you’re using.

]]>
By: Motion https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-287 Mon, 29 Sep 2014 11:51:40 +0000 http://andyibanez.com/?p=122#comment-287 I get 2 errors when i try make the package:

Tweak.xm:14:5: error: unknown type name ‘UIAlertView’
UIAlertView *myAlert = [[UIAlertView alloc]initWithTitle:appName message:…
^
Tweak.xm:14:30: error: use of undeclared identifier ‘UIAlertView’
UIAlertView *myAlert = [[UIAlertView alloc]initWithTitle:appName message:…

]]>
By: Brett https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-105 Sat, 03 May 2014 06:37:44 +0000 http://andyibanez.com/?p=122#comment-105 Sounds good! thanx!

]]>
By: Andrés Ibañez https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-104 Sat, 03 May 2014 06:27:52 +0000 http://andyibanez.com/?p=122#comment-104 I absolutely, never ever recommend people to attempt writing Tweaks when they don’t know the process of writing a “normal” app.
I recommend you pick up an Objective-C book (Stephen Kochan’s the best), learn Objective-C, and then iPhone development. If you have programmed before, it shouldn’t take you even months. If you haven’t, well you gotta start somewhere and learn programming basics there.

As much as I love helping people here, I refrain from answering basic questions as to not shift the focus of my blog. Once you pick up programming a bit, you will see how easy it is to do the switch that toggles the settings for you.

Good luck on your journey, my friend!

]]>
By: Brett https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-103 Sat, 03 May 2014 06:23:58 +0000 http://andyibanez.com/?p=122#comment-103 That is correct! I do mostly theming. I was somehow able to figure out how to make this tweak but have no knowledge of iOS development. I know that really holds me back but I’m trying to learn so I can wrap my brain around it and understand how things work.

]]>
By: Andrés Ibañez https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-102 Sat, 03 May 2014 06:19:22 +0000 http://andyibanez.com/?p=122#comment-102 All other options that store settings will require you to read the value that is stored in the plist and check it to see what the methods should do.
Are you by any chances new to programming or iOS development?

]]>
By: Brett https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-101 Sat, 03 May 2014 06:17:53 +0000 http://andyibanez.com/?p=122#comment-101 I see, so your method won’t allow the user to turn my tweak On or Off, at will. I’d need to use a different approach for that, I guess…

]]>
By: Andrés Ibañez https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-100 Sat, 03 May 2014 06:10:36 +0000 http://andyibanez.com/?p=122#comment-100 I must be misunderstanding something here… Because creating a switch and grabbing it’s value to see if the option is enabled or not is the thing I made in this tutorial…
You will need to check the plist value every time you need it.

]]>
By: Brett https://www.andyibanez.com/creating-aggregate-projects-theos-configurable-tweak/#comment-99 Sat, 03 May 2014 06:05:40 +0000 http://andyibanez.com/?p=122#comment-99 So, I have created a tweak (for theming) that removes latent images when opening and closing an app or folder. I have it hosted on MMI as MaskMuter. Basically, it disables several headers and functions to achieve the singular effect that I need. If you want, I can add a link to my Tweak.xm file.

One header/function i’ve disabled is this but there are many more similar to this:

%hook SBFolderIconView
-(id)darkeningOverlayImage {
return (NULL);
}
%end

I would like to have a PrefBundle to turn this (and the others) On or Off using a PSSwithCell. Any ideas?

]]>