Category Archives: Uncategorized

Hello world!

First post and like all things developed for the first time you start with a simple Hello World. I am going to a different level though and also put out some code examples.

The following code samples can be be seen in action here.

$('#helloBtn').button().click(function() {
    alert('Hello World.');
});


Some simple Objective C debug logging. You didn’t think I was going to write a whole iOS app did you? Maybe that will be some future blog.

-(void)sayHello
{
    NSLog(@"Hello World");
}