Iphone Tutorials Event Handling

Iphone Tutorials Event Handling
This blog is to familiarize you with the process of handling an event in an iPhone/iPod app.
We will create a demo project and walk you through the steps of handling an event, namely realizing a button click/touch on the iPhone/iPod screen.
Start Xcode and create a View based Application and name it “Event HandlingForBlog”.
To begin with, append EventHandlingForBlogViewController.h file
01#import
02@interface EventHandlingForBlogViewController : UIViewController {
03UIButton *btPrintM;
04}
05@property (nonatomic, retain) IBOutlet UIButton *btPrintM;
06 
07//This creates a property for your button declaring it as an outlet for use with view.
08 
09-(IBAction) printButtonPressed:(id) sender;
10@end



PrintButtonPressed is the function to handle the event of user pressing the btPrintM button.
With this you’re done with the .h file.
Now, select the EventHandlingForBlogViewController.m file

01#import "EventHandlingForBlogViewController.h"
02 
03@implementation EventHandlingForBlogViewController
04@synthesize btPrintM;
05- (void)viewDidUnload {
06self.btPrintM = nil;
07}
08- (void)dealloc {
09[btPrintM release];
10[super dealloc];
11}
12-(IBAction) printButtonPressed : (id) sender{
13NSLog(@"    Jai Ho");
14}
15@end

NSLog is like printf statement of C language. It prints onto the console.
Now, first save your project(Command+S).
Double-click on “EventHanldlingViewController.xib”.  This will launch the Interface Builder.
In the Interface Builder ’s Library, scroll down to “Round Rect Button” and drag it onto your View Window at a suitable position.
Double-click inside the button you dragged to edit its text, to say Print “Jai Ho”.
Now to link this button with that declared in the  EventHanldlingForBlogViewController.h file, select the File Owner from Main Window and open its Connections Inspector(Command+2). Drag the “btPrintM” radio button from the connection inspector onto your button in View Window.


Now to link an event on your button to the function declared in   EventHanldlingForBlogViewController.h file, select the button and press Command+2 or launch the Inspector Window (Shift+Command+I) and select Connections Inspector (the second tab). Now drag from the radio button named “Touch Up Inside” to the “File’s Owner” in the Main Window of the Interface Builder.
Touch Up Inside refers to the action of user touching the iPhone screen in the area highlighted by your button.
You can also select Touch Drag Inside/Outside, Touch Down, Touch Down Repeat, etc. A drop-down will appear. Select “printButtonPressed” from it


And thats it, you’ve completed your project. You can close the Interface Builder now and return to Xcode.
Now, save your project(Command+S).
To run this project,  click on the “Build & Go” button or (command + R).
The iPhone simulator will launch the application.

Go ahead, click on the button. To check whether it printed or not, launch the console from Xcode. The console button is in the centre with “gdb” written over it, as shown below. Alternatively, you can select Run -> Console or press Shift+Command+R.

The console will display “Jai Ho”!!

You can download source code from cinterviews here

No comments: