5 hours ago
mytexts
dropbox
finally


myTexts pro is already linked with your Dropbox.

After days of blood, sweat and trashed code - lots of trashed code, I finally can announce that the upcoming myTexts pro for iPad version has Dropbox support directly built-in…

Loading...



7 hours ago
useless


Random useless facts

The only domestic animal not mentioned in the Bible is the cat.

Michael’s 2 Cents:
Maybe this explains why most fundamentalistic christians really could need some real love…

Loading...





8 hours ago
quote


“There are no ordinary moments. There is always something going on.”

Peaceful Warrior

Loading...




10 hours ago
code
snippet
cocoa
ios


Daily Snippet

Ever wondered (four hours and days) why the heck:

textView.selectedRange = NSMakeRange(selLoc, selLen);

ist not working???

That’s because this stupid UITextView needs some share of kindness and affection first:

[textView select:self];

BTW:
If you’ve found a solution for ‘search & replace’ in an UITextView without breaking undo
- please let me know!


Loading...



TUMBLR TUESDAY

Time again to recommend your favorite blogs for the directory!
Maybe this little playground of mine…

Loading...





1 day ago
daily pic pick


Daily Pic Pick

(via)

For my German reader:
Ich glaub’ - ab sofort kotzen bei mir die Pferde nicht mehr vor der Apotheke…


Loading...



1 day ago
quote


“If opportunity doesn’t knock, build a door.”

Milton Berle

Loading...




1 day ago


Just a quick one for today.
How to play a sound file on the iPhone/iPod touch/iPad:

SystemSoundID soundID;
NSString *aiffName = @"Glass";
NSString *aiffPath = [[NSBundle mainBundle] pathForResource:aiffName ofType:@"aiff"];
NSURL *aiffURL = [NSURL fileURLWithPath:aiffPath];
AudioServicesCreateSystemSoundID((CFURLRef) aiffURL, &soundID);
AudioServicesPlaySystemSound(soundID);


Loading...