Archive for the ‘iPhone’ Category

Surf: Our first iPhone app

Friday, May 8th, 2009

Surf Development

Working with Shane and Peter inc. and WaveWatch.com I’m thrilled to show off our first iPhone app: “Surf”

Surf is an iPhone app for surfers. Its the first of its kind to include live surf cams.

However, my favorite part is the 6 day forecast graph. This forecast has tide, swell hight, swell direction, wind speed, wind direction, tide, sunrise, sunset, moonphase and weather conditions all in one easy to read scrollable graph.

For more information and download instruction visit http://iphone.wavewatch.com/download

Shane and Peter deserver a big thank you for their hard work. They have also put together a list of all the others who can’t be thanked enough for their help. S&P introduce Surf

iPhone Hello World (In 3 lines)

Friday, February 6th, 2009

I’m a big fan of simple, short tutorials that do what you need quickly. Here is a simple iPhone hello world tutorial with 3 steps and 3 lines of code. Download the source code

  1. Create a new iPhone project of the “View-Based Application” type. ( Helper Image )
  2. Open HelloWorldViewController.m in the “Classes” folder, uncomment the ViewDidLoad method on line #35 and add this code to it:( Helper Image )

    1
    2
    3
    4
    5
    6
    
     - (void)viewDidLoad {
        [super viewDidLoad];
    	UILabel *helloLabel = [[UILabel alloc] initWithFrame:CGRectMake(100, 30, 100, 30)];
    	[self.view addSubview:helloLabel];
    	helloLabel.text = @"Hello World";
    }
  3. Hit the “Build and Go” button and watch the magic.(or select Buld->Build and Go)

Simple iPhone “Hello World” tutorial.

Monday, March 10th, 2008

UPDATE: This tutorial no longer works with the latest iPhone sdk. I recommend this tutorial instead:
http://www.aaronspjut.com/mind/index.php/2009/02/06/iphone-hello-world-in-3-lines/
(more…)