Posted in Tue, 17 May 2011 ¬ 10:39h.Federico
If you want to make a plain directory out of a working copy, you could use the svn export command and then delete the working copy. But if you’re running under a *NIX system with a bash shell, it might be quicker to just go find . -name “.svn” -type d -exec rm -Rf {} [...]
Read the rest of this entry »
Posted in Mon, 16 May 2011 ¬ 17:43h.Federico
These two static methods of an ObjC class allow you to run initialization logic where you can set up any static state. Both methods are only invoked if implemented and do not need to be declared in the interface of your classes. The differences between them are as follows: In an application, or in a [...]
Read the rest of this entry »
Posted in Mon, 16 May 2011 ¬ 14:05h.Federico
While there isn’t a dedicated API in the Android SDK for sending email messages or adding events to a user’s calendar, there is a way to perform either task using specially constructed intents. Share this:EmailFacebookSharePrintRedditStumbleUponDigg
Read the rest of this entry »