Using the Stepper Control in iPhone
In Xcode 4 and iOS version 5, we have a new control available for use: the UIStepper control. The stepper control allows the user to increment or decrement a value. In this blog, we will see how to use...
View ArticleA Color Chooser for the iPhone
In this blog we’ll show an interesting way to set the background color of a view. We’ll also be looking at different ways to represent the same data, and converting from one representation to another....
View ArticleA TableView based menu for iPad
Menuing in iPad is typically handled through the use of popovers. But it is also possible to use separate table views in conjunction with button bar items to develop a menu for an iPad app. Let’s see...
View ArticleText Field With Number in iPhone
In this example we will see how to enter limited number in the TextField. So let see how it will worked. Step 1: Open the Xcode, Create a new project using View Base application. Give the application...
View ArticleDragging an image on iPhone
Often we want to drag an image view or other control around the main view. Since all user interface controls inherit from UIView, this is a simple matter of adjusting the view’s frame at runtime in...
View ArticleHandling subviews of the main view in UIViewController: Part 2 (iPhone)
In part 1 of this blog, we created an app that has a single view controller that dynamically creates two subviews with a single button each. We used delegation through a protocol to respond to the...
View ArticleReversing a String in iPhone
Sometimes we want to perform some task on an object that is not included in the methods of that class. An example of this might be reversing the order of characters in an NSString object. While we...
View ArticleShowing an Alert in iPhone
Many times, we want to give a visual indication to the user that something has happened. We might tell the user that a file was saved, information has loaded, or some condition has been met that they...
View ArticleNotifications in iPhone Programming
In this tutorial I will explain how local notifications can be performed in iOS application. Here there’s three important steps: 1. Create a new observer to listen for the notification (event) to...
View ArticleMap view with annotations and its views
In this tutorial I will be looking into the MapKit, a new API’s made available by Apple in the iOS 3.0 and later versions. The MapKit allows simple access to the map seen in the maps application. Using...
View Article