Search This Blog

Wednesday, February 16, 2011

Creating an iPhone Application its  very easy just follow steps.

Step One - Create a New iPhone Project


Step Two - Create a View for the Application 


Step Three - Adding Elements to the View

 


  Step Four - Implementing the View in Your Application.

And the code is ....


#import <UIKit/UIKit.h> @class HelloWorldViewController; @interface HelloWorldAppDelegate : NSObject <UIApplicationDelegate> { UIWindow *window; HelloWorldViewController *hwvc; } @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) HelloWorldViewController *hwvc;   The final output looks like ..

No comments:

Post a Comment