Introduction
In this article we create an empty view application and use a uiviewcontroller class to navigate from one view to another. For changing the style of the navigation bar we use code in the view load method of each view. In this I use two views, FirstViewController and SecondViewController.
Step 1
Open XCode by double-clicking on it.
Step 2
Create a New XCode Project via click on it.
Step 3
Now select Empty View Application and click on Next.
Step 4
Now give your Product Name, Company Identifier and click on Next.
Step 5
Select the location where you want to save your project to and click on Create.
Step 6
Now you will see in the XCode Window two Objective-C Classes that were generated by XCode; they are:
1. Appdelegate.h
2. AppDelegate.m
Now we add two UIViewController; for this we use the following procedure.
Step 7
Select the appdelegate.m class and right-click on it, as in:
Choose New File..
Step 8
Select Subclass of UIViewController from the drop down list and give a class name. Here I use First view controller for the class name. Then click on checkbox with xib use interface. Add a label and button from xib.
Click on next.
Step 9
Now click on create to import a class into the project, as in:
Repeat Steps to add the Second view controller class.
Step 10
After that we code for navigation and to do linking.
Step 11
To change the style of the navigation bar we use the following code:
Step 12
Now select which platform you want to see output for.
Output
Output 1 in iPhone:
Output 2 in iPhone: