Tab Bar Application Part 4 ( Navigation )
Step1
Create a project by using previous tutorial
Step 2
add a new class call "FirstView"
Step 3
click the "FirstView.xib" file then change the UI
Step 4
change the code in "FirstTabView.h" file
#import <UIKit/UIKit.h>
#import "FirstView.h" // import the header of the "FirstView"
@interface FirstTabView : UIViewController
-(IBAction)GotoFirst:(id)sender;
@end
-(IBAction)GotoFirst:(id)sender
{
FirstView *first=[[FirstView alloc] initWithNibName:@"FirstView" bundle:nil];
//Push
detail view controller on to the stack
[self.navigationController pushViewController:first animated:YES];
}
Step 6
add button to the "FirstTabView.xib"
Step 7
Run Your App
Good Luck!
Tutorial List
- SQLite Based iPhone Application
- json with IOS (Basic) - Tutorial
- Simple Table View in IOS
- Load Distinct Images from array into UITableView
- Simple UIPickerView Example
- Tab Bar Application Part 1
- Tab Bar Application Part 2
- Tab Bar Application Part 3 ( with Login Screen )
- Tab Bar Application Part 4 ( Navigation )
- Table View Design in IOS Part 1
- Table View Design in IOS Part 2 ( Time Table )
- How to Add search bar in Table View
- Local Notification in IOS
- Core Data (For Beginners )
- Core Data Tute 2 (Add/Delete/Search)
- Core Data Tute 3 (Two table)
- Custom Cell in UITableview
- Lazy Loading
- Pull to Refresh in TableView
- Working with keyboard in Objective C - Part 1
No comments:
Post a Comment