You are here

Working with HelloRepo

A set of tutorials showing you how to extend HelloRepo into a more useful application.

This section of the documentation consists of a number of hands-on tutorials which show you how to extend the HelloRepo example application (as HelloRepo is no longer provided you will build it from scratch).

CAUTION:
The tutorials must be completed in order.

The HelloRepo application consists of the following files:

File Description
AppDelegate.h Application Delegate header file
AppDelegate.m Application Delegate implementation file. The initial starting point for the application where the main controllers are created.
HelloRepoViewController.h Header file for the main view controller.
HelloRepoViewController.m This file has the main implementation code. It is a table view controller that displays the list of nodes found in your repository root.

In this series of tutorials you will add another view controller. This is also a table view controller. The new view controller will contained in two newly created files DocumentTableViewController.h and DocumentTableViewController.m. The purposes of this view is to display the details for a node selected from the main node listing table view.