Avatar

danielesavi:

Il problema di avere un avatar con il proprio faccione è che andrebbe aggiornato periodicamente, man mano che l’età avanza.

Essendo pigro, non mi va. Così io invecchio, e l’avatar no. 

Tipo Dorian Gray, ma al contrario.

PopPod, another way to control your iPod

This new tweak allows you to have more control over your iPod than the classic panel in the Apple multitasking.

## Screenshots
http://cl.ly/2e0B0q0D1G2W2h273z2F
http://cl.ly/3012462P3h1Q0N3J2D44
http://cl.ly/26030t3o13190k0S0s1u

##Video

http://www.youtube.com/watch?v=27Ha4v3IMus
http://www.youtube.com/watch?v=7kv4NE4oAwo

Available on ModMyI’s repo.

UnAlarm, a tweak for your iDevices (OPEN SOURCE)

This tweak sets a sound alarm and, if activated, an alert too. You can also set a personal text for the alarm.

## Screenshot

http://cl.ly/3W2S001w2B130d2o3C01
http://cl.ly/0Z2c390O1i0U2Z3X252o
http://cl.ly/1N3t1M0l0z1c261W0b3C

Available on ModMyI’s repo ;)

## Personal Audio

If you wanna have a personal sound, simply edit the file in /var/mobile/Library/UnAlarm, remember to call your file ‘alarm_sound.caf’ or ‘fully_sound.caf’. You can create a caf files using iTunes.
PS: You can also try to make a Winterboard Theme

## Changelog

-Screen setting changed
-Small changes
-FInal version, I will not update
-Forked on GitHub 

Action in Preferences Bundle

I have not found a good guide or hints on how to insert a link in preferences bundle, so I decided to write a little guide ;)

## First Step

Create a new item in your plist file, something like this:

<dict>
<key>action</key> 
<string>youraction:</string> //This is the name of your action!
<key>cell</key> 
<string>PSButtonCell</string> //cell type, this is gonna be a button
<key>label</key> 
<string>Some cool text ;)</string>
</dict> 

## Implement the action

Now open your preferences bundle’s .mm file. Add -(IBAction)youraction:(id)sender; in the interface, youraction must be the same written in plist ;)

Now go to the implementation and create the metod, like that:

-(IBAction)youraction:(id)sender
{ //ok this code will open a URL, but you can write everything you want ;)
NSString *stringURL = @”the url must be written here”;
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
}

## Done! Ok, it’s done. Now make and try out ;)