How to use Multiview Controller in iphone?

It’s most important to understand that each of these multiview controller is a view controller. Even the provided multiview classes UITabBarController and UINavigationController are subclasses if UIViewController and can do anything other view controller can do.

Read More...

How To Detect Multiple Taps In iPhone?

Detecting multiple taps is very easy to use. If the user triple taps, you get notified three separate times. You get a single-tap, a double tap and finally triple tap. lets see how it is worked.

Read More...

How To Use Accelerometer In iPhone?

This is going to be a very simple example of using the accelerometerto receive input.We are using Quartz 2D in this application for the sake of simplicity and reduce the amount of code that’s unreleated to using the accelerometer.

Read More...

How To Create Navigation Base Application In iPhone?

Xcode offers a perfectly good template for creating navigation-based applications, and you will likely use it much of the time when you need to create hierarchical applications. We are going to construct our navigation-based application from the ground up so you get a feel for how everything fits together.

Read More...

How To Use Quartz In iPhone?

Quartz 2D is an advanced, two-dimensional drawing engine available for iPhone application development and to all Mac OS X application environments outside of the kernel.

Read More...

How To Use Autorotation And Autosizing In iPhone?

This application used both Portrait and Landscape mode. I will show you how to change that orientation at runtime.

Read More...

How To Execute HelloWorld Program In iPhone?

There are many way to write “Hello World” program in iphone. But we’ll show you how to work with Interface Builder. This is a very simple example. Just try it.

Read More...

How To Use Plist In iPhone ?

This is the example of a plist (Property list) to get a feel for how its works.

Read More...

How To Use TableView In Iphone?

Let’s look at the simplest possible example of a table view to get a feel for how its works. In this example ,we are going to display a list of text value.

Read More...

How To Play Sounds In iPhone ?

The iphone media player is very easy to use.

Read More...