iPhone and iPod touch application developer's thread


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers iPhone and iPod touch application developer's thread
# 1  
Old 03-31-2008
iPhone and iPod touch application developer's thread

I am a complete noob when it comes to coding... If I could get some help with coding an iPhone or iPod touch application so I can learn the basics, that would be great. For now I want to make something simple that will take me only an hour or so... Basically, I'm not sure what to do... I started with this canvas...
Code:
//
//  My first app.h
//  
//
//  Created by My Name on 3/31/08.
//  Copyright 2008 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface My_first_app : NSObject {

}

@end

What do I do??????????????????

Last edited by Yogesh Sawant; 04-01-2008 at 02:43 AM.. Reason: added code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Jifty::Manual::Style(3pm)				User Contributed Perl Documentation				 Jifty::Manual::Style(3pm)

NAME
Jifty::Manual::Style - Jifty coding style guide Default style When in doubt, default to whatever Damian Conway's Perl Best Practices says. Private documentation When documenting a private method, or providing documentation which is not useful to the user of the module (and is presumably useful to the developer), wrap it in =begin/end private. This way it does not show up in perldoc where a user would see it and yet is still available and well formatted (that is, not just a lump comment) when looking at the code. =begin private =head2 import_extra Called by L<Test::More>'s C<import> code when L<Jifty::Test> is first C<use>'d, it calls L</setup>, and asks Test::More to export its symbols to the namespace that C<use>'d this one. =end private sub import_extra { ... } Test temp files Files created by tests should be declared as such using Jifty::Test->test_file() so they are cleaned up on a successful test run. Use Shell::Command Shell::Command has a number of functions which work like common shell file commands such as "touch", "cp" and "mv". They are battle tested and cross-platform. Use them instead of coding your own. For example, instead of this: open my $file, ">foo"; close $file; Do this: use Shell::Command; touch $file; Case insensitive matching To check if a string equals another string case insensitively, do this lc $foo eq lc $bar; lc $foo eq 'bar'; not this: $foo =~ /^Q$barE/i; $foo =~ /^bar$/i; perl v5.14.2 2010-12-08 Jifty::Manual::Style(3pm)